]> git.lizzy.rs Git - rust.git/blob - tests/ui/conditional-compilation/cfg_accessible.stderr
Rollup merge of #106427 - mejrs:translation_errors, r=davidtwco
[rust.git] / tests / ui / conditional-compilation / cfg_accessible.stderr
1 error[E0425]: cannot find value `ExistingPrivate` in this scope
2   --> $DIR/cfg_accessible.rs:52:5
3    |
4 LL |     ExistingPrivate;
5    |     ^^^^^^^^^^^^^^^ not found in this scope
6    |
7 note: unit struct `m::ExistingPrivate` exists but is inaccessible
8   --> $DIR/cfg_accessible.rs:5:5
9    |
10 LL |     struct ExistingPrivate;
11    |     ^^^^^^^^^^^^^^^^^^^^^^^ not accessible
12
13 error[E0425]: cannot find value `NonExistingPrivate` in this scope
14   --> $DIR/cfg_accessible.rs:53:5
15    |
16 LL |     NonExistingPrivate;
17    |     ^^^^^^^^^^^^^^^^^^ not found in this scope
18
19 error[E0425]: cannot find value `NonExistingTraitAlias` in this scope
20   --> $DIR/cfg_accessible.rs:54:5
21    |
22 LL |     NonExistingTraitAlias;
23    |     ^^^^^^^^^^^^^^^^^^^^^ not found in this scope
24
25 error: aborting due to 3 previous errors
26
27 For more information about this error, try `rustc --explain E0425`.