rust/tests/ui/cfg/auxiliary/cfg_inner_static.rs
2023-01-11 09:32:08 +00:00

8 lines
131 B
Rust

// this used to just ICE on compiling
pub fn foo() {
if cfg!(foo) {
static a: isize = 3;
a
} else { 3 };
}