2018-09-01 16:13:22 -05:00
|
|
|
error: `cfg` is not followed by parentheses
|
|
|
|
--> $DIR/cfg-attr-syntax-validation.rs:1:1
|
|
|
|
|
|
|
|
|
LL | #[cfg] //~ ERROR `cfg` is not followed by parentheses
|
|
|
|
| ^^^^^^ help: expected syntax is: `cfg(/* predicate */)`
|
|
|
|
|
|
|
|
error: `cfg` is not followed by parentheses
|
|
|
|
--> $DIR/cfg-attr-syntax-validation.rs:4:1
|
|
|
|
|
|
|
|
|
LL | #[cfg = 10] //~ ERROR `cfg` is not followed by parentheses
|
|
|
|
| ^^^^^^^^^^^ help: expected syntax is: `cfg(/* predicate */)`
|
|
|
|
|
|
|
|
error: `cfg` predicate is not specified
|
|
|
|
--> $DIR/cfg-attr-syntax-validation.rs:7:1
|
|
|
|
|
|
|
|
|
LL | #[cfg()] //~ ERROR `cfg` predicate is not specified
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: multiple `cfg` predicates are specified
|
|
|
|
--> $DIR/cfg-attr-syntax-validation.rs:10:10
|
|
|
|
|
|
|
|
|
LL | #[cfg(a, b)] //~ ERROR multiple `cfg` predicates are specified
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: `cfg` predicate key cannot be a literal
|
|
|
|
--> $DIR/cfg-attr-syntax-validation.rs:13:7
|
|
|
|
|
|
|
|
|
LL | #[cfg("str")] //~ ERROR `cfg` predicate key cannot be a literal
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: `cfg` predicate key must be an identifier
|
|
|
|
--> $DIR/cfg-attr-syntax-validation.rs:16:7
|
|
|
|
|
|
|
|
|
LL | #[cfg(a::b)] //~ ERROR `cfg` predicate key must be an identifier
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error[E0537]: invalid predicate `a`
|
|
|
|
--> $DIR/cfg-attr-syntax-validation.rs:19:7
|
|
|
|
|
|
|
|
|
LL | #[cfg(a())] //~ ERROR invalid predicate `a`
|
|
|
|
| ^^^
|
|
|
|
|
2018-10-19 22:11:01 -05:00
|
|
|
error[E0565]: literal in `cfg` predicate value must be a string
|
2018-09-01 16:13:22 -05:00
|
|
|
--> $DIR/cfg-attr-syntax-validation.rs:22:11
|
|
|
|
|
|
2018-10-19 22:11:01 -05:00
|
|
|
LL | #[cfg(a = 10)] //~ ERROR literal in `cfg` predicate value must be a string
|
2018-09-01 16:13:22 -05:00
|
|
|
| ^^
|
|
|
|
|
2018-10-19 22:11:01 -05:00
|
|
|
error[E0565]: literal in `cfg` predicate value must be a string
|
|
|
|
--> $DIR/cfg-attr-syntax-validation.rs:25:11
|
|
|
|
|
|
2018-10-22 20:03:35 -05:00
|
|
|
LL | #[cfg(a = b"hi")] //~ ERROR literal in `cfg` predicate value must be a string
|
2018-10-19 22:11:01 -05:00
|
|
|
| ^^^^^ help: consider removing the prefix: `"hi"`
|
|
|
|
|
2018-09-01 16:13:22 -05:00
|
|
|
error: `cfg` is not a well-formed meta-item
|
2018-10-19 22:11:01 -05:00
|
|
|
--> $DIR/cfg-attr-syntax-validation.rs:30:9
|
2018-09-01 16:13:22 -05:00
|
|
|
|
|
|
|
|
LL | #[cfg(feature = $expr)] //~ ERROR `cfg` is not a well-formed meta-item
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ help: expected syntax is: `#[cfg(/* predicate */)]`
|
|
|
|
...
|
2018-10-19 22:11:01 -05:00
|
|
|
LL | generate_s10!(concat!("nonexistent"));
|
|
|
|
| -------------------------------------- in this macro invocation
|
2018-09-01 16:13:22 -05:00
|
|
|
|
2018-10-19 22:11:01 -05:00
|
|
|
error: aborting due to 10 previous errors
|
2018-09-01 16:13:22 -05:00
|
|
|
|
2018-10-09 09:55:07 -05:00
|
|
|
Some errors occurred: E0537, E0565.
|
|
|
|
For more information about an error, try `rustc --explain E0537`.
|