Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
const-block-non-item-statement-rpass.rs
blob: a4576bd1b170a3a3bfc9a04dfb0d64cc6bf50cdf [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
,
unused
)]
#[
repr
(
u8
)]
enum
Foo
{
Bar
=
{
let
x
=
1
;
3
}
}
pub
fn
main
()
{
assert_eq
!(
3
,
Foo
::
Bar
as
u8
);
}