]> git.proxmox.com Git - rustc.git/blob - tests/ui/consts/const-eval/simple_with_undef.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / consts / const-eval / simple_with_undef.rs
1 // check-pass
2
3 const PARSE_BOOL: Option<&'static str> = None;
4 static FOO: (Option<&str>, u32) = (PARSE_BOOL, 42);
5
6 fn main() {}