1error: not sure whether the path is accessible or not
2  --> $DIR/cfg_accessible.rs:12:18
3   |
4LL | #[cfg_accessible(m::ExistingPrivate)]
5   |                  ^^^^^^^^^^^^^^^^^^
6   |
7note: `cfg_accessible` is not fully implemented
8  --> $DIR/cfg_accessible.rs:12:18
9   |
10LL | #[cfg_accessible(m::ExistingPrivate)]
11   |                  ^^^^^^^^^^^^^^^^^^
12
13error: not sure whether the path is accessible or not
14  --> $DIR/cfg_accessible.rs:16:18
15   |
16LL | #[cfg_accessible(m::NonExistent)]
17   |                  ^^^^^^^^^^^^^^
18   |
19note: `cfg_accessible` is not fully implemented
20  --> $DIR/cfg_accessible.rs:16:18
21   |
22LL | #[cfg_accessible(m::NonExistent)]
23   |                  ^^^^^^^^^^^^^^
24
25error: not sure whether the path is accessible or not
26  --> $DIR/cfg_accessible.rs:37:18
27   |
28LL | #[cfg_accessible(S::field)]
29   |                  ^^^^^^^^
30   |
31note: `cfg_accessible` is not fully implemented
32  --> $DIR/cfg_accessible.rs:37:18
33   |
34LL | #[cfg_accessible(S::field)]
35   |                  ^^^^^^^^
36
37error: aborting due to 3 previous errors
38
39