Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
error-codes
/
E0071.rs
blob: bd8469de75da0cf9855bf2bacf084693ba7b0c0b [
file
] [
log
] [
blame
]
enum
Foo
{}
type
FooAlias
=
Foo
;
fn
main
()
{
let
u
=
FooAlias
{
value
:
0
};
//~^ ERROR expected struct, variant or union type, found enum `Foo` [E0071]
}