summaryrefslogtreecommitdiffstats
path: root/src/test/ui/cfg/cfg-path-error.stderr
blob: 84b44b2b0c24a021467e56df3772630d07763ada (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
error: `cfg` predicate key must be an identifier
  --> $DIR/cfg-path-error.rs:3:16
   |
LL | #[cfg(any(foo, foo::bar))]
   |                ^^^^^^^^

error: `cfg` predicate key must be an identifier
  --> $DIR/cfg-path-error.rs:7:11
   |
LL | #[cfg(any(foo::bar, foo))]
   |           ^^^^^^^^

error: `cfg` predicate key must be an identifier
  --> $DIR/cfg-path-error.rs:11:16
   |
LL | #[cfg(all(foo, foo::bar))]
   |                ^^^^^^^^

error: `cfg` predicate key must be an identifier
  --> $DIR/cfg-path-error.rs:15:11
   |
LL | #[cfg(all(foo::bar, foo))]
   |           ^^^^^^^^

error: aborting due to 4 previous errors