Sign in
rust
/
rust
/
44ee391300a7cc4623410145e4aca511cd2bd00e
/
.
/
tests
/
ui
/
typeck
/
nonexistent-field-not-ambiguous.rs
blob: 1cd192b783cdb3b794d56f7ca52bf81e02ac5068 [
file
]
struct
Foo
{
val
:
MissingType
,
//~^ ERROR cannot find type `MissingType` in this scope
}
fn
main
()
{
Foo
{
val
:
Default
::
default
()
};
}