10 lines
189 B
Rust
10 lines
189 B
Rust
fn main() {}
|
|
|
|
struct S { x : u32 }
|
|
|
|
#[cfg(FALSE)]
|
|
fn foo() {
|
|
_; //~ ERROR destructuring assignments are unstable
|
|
|
|
S { x: 5, .. }; //~ ERROR destructuring assignments are unstable
|
|
}
|