]> git.lizzy.rs Git - rust.git/blob - src/test/ui/conditional-compilation/cfg_accessible.stderr
Rollup merge of #93813 - xldenis:public-mir-passes, r=wesleywiser
[rust.git] / src / test / ui / conditional-compilation / cfg_accessible.stderr
1 error: not sure whether the path is accessible or not
2   --> $DIR/cfg_accessible.rs:12:18
3    |
4 LL | #[cfg_accessible(m::ExistingPrivate)]
5    |                  ^^^^^^^^^^^^^^^^^^
6    |
7 note: `cfg_accessible` is not fully implemented
8   --> $DIR/cfg_accessible.rs:12:18
9    |
10 LL | #[cfg_accessible(m::ExistingPrivate)]
11    |                  ^^^^^^^^^^^^^^^^^^
12
13 error: not sure whether the path is accessible or not
14   --> $DIR/cfg_accessible.rs:16:18
15    |
16 LL | #[cfg_accessible(m::NonExistent)]
17    |                  ^^^^^^^^^^^^^^
18    |
19 note: `cfg_accessible` is not fully implemented
20   --> $DIR/cfg_accessible.rs:16:18
21    |
22 LL | #[cfg_accessible(m::NonExistent)]
23    |                  ^^^^^^^^^^^^^^
24
25 error: not sure whether the path is accessible or not
26   --> $DIR/cfg_accessible.rs:37:18
27    |
28 LL | #[cfg_accessible(S::field)]
29    |                  ^^^^^^^^
30    |
31 note: `cfg_accessible` is not fully implemented
32   --> $DIR/cfg_accessible.rs:37:18
33    |
34 LL | #[cfg_accessible(S::field)]
35    |                  ^^^^^^^^
36
37 error: aborting due to 3 previous errors
38