Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
consts
/
issue-32829.rs
blob: e02db69c6861d732fe40a5da676ea0058065a533 [
file
] [
log
] [
blame
]
static
S
:
u64
=
{
{
panic
!(
"foo"
);
0
}
};
//~^ ERROR evaluation panicked: foo
fn
main
()
{
println
!(
"{:?}"
,
S
);
}