blob: 8bc93fa324378391446dee53883b51c7e4b39ecc (
plain)
1
2
3
4
5
6
7
8
9
|
#![feature(cfg_accessible)]
#[cfg_accessible(Z)] //~ ERROR cannot determine whether the path is accessible or not
struct S;
#[cfg_accessible(S)] //~ ERROR cannot determine whether the path is accessible or not
struct Z;
fn main() {}
|