rust/src/test/ui/consts/const-eval/simple_with_undef.rs

7 lines
130 B
Rust
Raw Normal View History

// compile-pass
const PARSE_BOOL: Option<&'static str> = None;
static FOO: (Option<&str>, u32) = (PARSE_BOOL, 42);
fn main() {}