about summary refs log tree commit diff
path: root/tests/ui/consts/issue-32829.rs
blob: e02db69c6861d732fe40a5da676ea0058065a533 (plain)
1
2
3
4
5
6
static S : u64 = { { panic!("foo"); 0 } };
//~^ ERROR evaluation panicked: foo

fn main() {
    println!("{:?}", S);
}