blob: 42808eb2a6b0d7753fe207f8c7cf63d379523e61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error: macro rhs must be delimited
--> $DIR/macro-error.rs:12:18
|
LL | ($a:expr) => a; //~ ERROR macro rhs must be delimited
| ^
error: non-type macro in type position: cfg
--> $DIR/macro-error.rs:18:12
|
LL | let _: cfg!(foo) = (); //~ ERROR non-type macro in type position
| ^^^
error: aborting due to 2 previous errors
|