blob: 4ed4f56702c3208df595eef2c12b541743852698 [file] [log] [blame]
fn main() {}
struct S { x : u32 }
#[cfg(FALSE)]
fn foo() {
_; //~ ERROR destructuring assignments are unstable
S { x: 5, .. }; //~ ERROR destructuring assignments are unstable
}