blob: c9fdca4577279d244effc4bff1dad0b11a90f36a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
struct S {
a: u32,
}
fn main() {
let s1 = S { a: 1 };
let _ = || {
let s2 = Oops { a: 2, ..s1 };
//~^ ERROR cannot find struct, variant or union type `Oops` in this scope
};
}
|