Sign in
android
/
toolchain
/
rustc
/
ff3f07ae99a30006dd85b9d73084edd9355c9db6
/
.
/
src
/
test
/
run-pass
/
ctfe
/
const-block-non-item-statement.rs
blob: a1b9b586ad0384e70e2fffc0c66a141c51972dd9 [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
dead_code
)]
#[
repr
(
u8
)]
enum
Foo
{
Bar
=
{
let
x
=
1
;
3
}
}
pub
fn
main
()
{
assert_eq
!(
3
,
Foo
::
Bar
as
u8
);
}