2022-02-23 08:44:57 -06:00
|
|
|
error: `cfg` predicate key must be an identifier
|
2024-04-06 17:33:37 -05:00
|
|
|
--> $DIR/cfg-path-error.rs:5:16
|
2022-02-23 08:44:57 -06:00
|
|
|
|
|
|
|
|
LL | #[cfg(any(foo, foo::bar))]
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: `cfg` predicate key must be an identifier
|
2024-04-06 17:33:37 -05:00
|
|
|
--> $DIR/cfg-path-error.rs:9:11
|
2022-02-23 08:44:57 -06:00
|
|
|
|
|
|
|
|
LL | #[cfg(any(foo::bar, foo))]
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: `cfg` predicate key must be an identifier
|
2024-04-06 17:33:37 -05:00
|
|
|
--> $DIR/cfg-path-error.rs:13:16
|
2022-02-23 08:44:57 -06:00
|
|
|
|
|
|
|
|
LL | #[cfg(all(foo, foo::bar))]
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: `cfg` predicate key must be an identifier
|
2024-04-06 17:33:37 -05:00
|
|
|
--> $DIR/cfg-path-error.rs:17:11
|
2022-02-23 08:44:57 -06:00
|
|
|
|
|
|
|
|
LL | #[cfg(all(foo::bar, foo))]
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|