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