about summary refs log tree commit diff
path: root/src/test/ui/consts/const-eval/simple_with_undef.rs
blob: 8a9f3fe974d918c30abe1c7246e730b59abce426 (plain)
1
2
3
4
5
6
// 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() {}