Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
conditional-compilation
/
cfg_accessible-stuck.rs
blob: 50504a44c95183b78de472e16b1bd886fb5869ed [
file
]
#![
feature
(
cfg_accessible
)]
#[
cfg_accessible
(
Z
)]
// OK, recovered after the other `cfg_accessible` produces an error.
struct
S
;
#[
cfg_accessible
(
S
)]
//~ ERROR cannot determine whether the path is accessible or not
struct
Z
;
fn
main
()
{}