about summary refs log tree commit diff
path: root/tests/ui/cfg/both-true-false.stderr
blob: 1a7c509aec0c7ff0b447b0000edc5702dbaea39b (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
error[E0425]: cannot find function `foo` in this scope
  --> $DIR/both-true-false.rs:13:5
   |
LL |     foo();
   |     ^^^ not found in this scope
   |
note: found an item that was configured out
  --> $DIR/both-true-false.rs:6:4
   |
LL | #[cfg(false)]
   |       ----- the item is gated here
LL | #[cfg(true)]
LL | fn foo() {}
   |    ^^^
note: found an item that was configured out
  --> $DIR/both-true-false.rs:10:4
   |
LL | #[cfg(false)]
   |       ----- the item is gated here
LL | fn foo() {}
   |    ^^^

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0425`.