Sign in
rust
/
rust
/
2a96ea0beefef3c9bfbbca803565e7afb6732b17
/
.
/
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
()
};
}