blob: 1cd192b783cdb3b794d56f7ca52bf81e02ac5068 [file]
struct Foo {
val: MissingType,
//~^ ERROR cannot find type `MissingType` in this scope
}
fn main() {
Foo { val: Default::default() };
}