blob: 8f0e4cd827e09428663e1512c643d2816c32661b [file] [log] [blame] [edit]
// #81282: Attributes are not allowed on struct field rest patterns (the ..).
struct S {}
fn main() {
let S { #[cfg(false)] .. } = S {};
//~^ ERROR expected identifier, found `..`
}