blob: 4ed4f56702c3208df595eef2c12b541743852698 (
plain)
1
2
3
4
5
6
7
8
9
10
|
fn main() {}
struct S { x : u32 }
#[cfg(FALSE)]
fn foo() {
_; //~ ERROR destructuring assignments are unstable
S { x: 5, .. }; //~ ERROR destructuring assignments are unstable
}
|