about summary refs log tree commit diff
path: root/tests/ui/consts/const-eval/simple_with_undef.rs
blob: 990db4b29d7b79ff744838ee13d275e92d21b690 (plain)
1
2
3
4
5
6
//@ check-pass

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

fn main() {}