]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/simple_with_undef.rs
Rollup merge of #101655 - dns2utf8:box_docs, r=dtolnay
[rust.git] / src / test / 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() {}