mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 23:03:06 +03:00
11 lines
279 B
Rust
11 lines
279 B
Rust
//@ reference: macro.decl.syntax
|
|
macro_rules! foo {
|
|
($a:expr) => a; //~ ERROR macro rhs must be delimited
|
|
}
|
|
|
|
fn main() {
|
|
foo!(0); // Check that we report errors at macro definition, not expansion.
|
|
|
|
let _: cfg!(FALSE) = (); //~ ERROR non-type macro in type position
|
|
}
|