Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
inline-const
/
required-const.rs
blob: 437652532ec54bd741603972ac7083568f1858d0 [
file
]
//@ build-fail
//@ compile-flags: -Zmir-opt-level=3
//@ ignore-parallel-frontend post-monomorphization errors
fn
foo
<
T
>()
{
if
false
{
const
{
panic
!()
}
//~ ERROR E0080
}
}
fn
main
()
{
foo
::<
i32
>();
}