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