2018-12-04 19:10:32 +00:00
|
|
|
error: macro requires a cfg-pattern as an argument
|
|
|
|
--> $DIR/cfg.rs:2:5
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | cfg!();
|
2021-10-14 18:28:28 +00:00
|
|
|
| ^^^^^^ cfg-pattern required
|
2019-12-16 13:56:47 +00:00
|
|
|
|
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `cfg` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-12-04 19:10:32 +00:00
|
|
|
|
|
|
|
error: expected identifier, found `123`
|
|
|
|
--> $DIR/cfg.rs:3:10
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | cfg!(123);
|
2018-12-04 19:10:32 +00:00
|
|
|
| ^^^ expected identifier
|
|
|
|
|
|
|
|
error[E0565]: literal in `cfg` predicate value must be a string
|
|
|
|
--> $DIR/cfg.rs:4:16
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | cfg!(foo = 123);
|
2018-12-04 19:10:32 +00:00
|
|
|
| ^^^
|
|
|
|
|
2022-06-21 18:28:22 +00:00
|
|
|
error: expected 1 cfg-pattern
|
|
|
|
--> $DIR/cfg.rs:5:5
|
|
|
|
|
|
|
|
|
LL | cfg!(foo, bar);
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: this error originates in the macro `cfg` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2018-12-04 19:10:32 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0565`.
|