summary refs log tree commit diff
path: root/src/test/ui/consts/const-eval/simple_with_undef.rs
blob: 61398f3a375c25f8fd4c6acc5026b8b04565d395 (plain)
1
2
3
4
5
6
// compile-pass

const PARSE_BOOL: Option<&'static str> = None;
static FOO: (Option<&str>, u32) = (PARSE_BOOL, 42);

fn main() {}