Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
const_prop
/
const-prop-ice2.rs
blob: 1f28cb3106e18d65df16a1478b6bd2fa967131df [
file
] [
log
] [
blame
] [
edit
]
//@ build-fail
fn
main
()
{
enum
Enum
{
One
=
1
}
let
xs
=[
0
;
1
as
usize
];
println
!(
"{}"
,
xs
[
Enum
::
One
as
usize
]);
//~ ERROR this operation will panic at runtime
}