Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
union
/
unresolved-field-isnt-copy.rs
blob: 7a6d79b2faa8850df582a849e747ac0223017fe4 [
file
] [
log
] [
blame
] [
edit
]
// Unresolved fields are not copy, but also shouldn't report an extra E0740.
pub
union
Foo
{
x
:
*
const
Missing
,
//~^ ERROR cannot find type `Missing` in this scope
}
fn
main
()
{}