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