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

7 lines
165 B
Rust
Raw Normal View History

// build-pass (FIXME(62277): could be check-pass?)
const PARSE_BOOL: Option<&'static str> = None;
static FOO: (Option<&str>, u32) = (PARSE_BOOL, 42);
fn main() {}