Sign in
rust
/
rust
/
ef4cff2ea33e070b7fa7253fdb4a88e3f4086a15
/
.
/
tests
/
ui
/
inline-const
/
required-const.rs
blob: 8f640e933d0192c6ea55afe5ce5b5b2c5c77df5e [
file
]
//@ build-fail
//@ compile-flags: -Zmir-opt-level=3
fn
foo
<
T
>()
{
if
false
{
const
{
panic
!()
}
//~ ERROR E0080
}
}
fn
main
()
{
foo
::<
i32
>();
}