rust/tests/ui/consts/const-eval/simple_with_undef.rs
2024-02-16 20:02:50 +00:00

7 lines
129 B
Rust

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