2013-10-22 23:51:45 -04:00
|
|
|
// Can't put mut in non-ident pattern
|
|
|
|
|
2019-08-27 13:04:48 +02:00
|
|
|
// edition:2018
|
|
|
|
|
|
|
|
#![feature(box_patterns)]
|
|
|
|
#![allow(warnings)]
|
|
|
|
|
2013-10-22 23:51:45 -04:00
|
|
|
pub fn main() {
|
2019-08-27 13:04:48 +02:00
|
|
|
let mut mut x = 0;
|
|
|
|
//~^ ERROR `mut` on a binding may not be repeated
|
|
|
|
//~| remove the additional `mut`s
|
|
|
|
|
2015-01-08 21:54:35 +11:00
|
|
|
struct Foo { x: isize }
|
2019-08-18 22:54:07 +02:00
|
|
|
let mut Foo { x: x } = Foo { x: 3 };
|
2019-08-27 13:04:48 +02:00
|
|
|
//~^ ERROR `mut` must be attached to each individual binding
|
|
|
|
//~| add `mut` to each binding
|
|
|
|
|
|
|
|
let mut Foo { x } = Foo { x: 3 };
|
|
|
|
//~^ ERROR `mut` must be attached to each individual binding
|
|
|
|
//~| add `mut` to each binding
|
|
|
|
|
|
|
|
struct r#yield(u8, u8);
|
|
|
|
let mut mut yield(become, await) = r#yield(0, 0);
|
|
|
|
//~^ ERROR `mut` on a binding may not be repeated
|
|
|
|
//~| ERROR `mut` must be attached to each individual binding
|
|
|
|
//~| ERROR expected identifier, found reserved keyword `yield`
|
|
|
|
//~| ERROR expected identifier, found reserved keyword `become`
|
|
|
|
//~| ERROR expected identifier, found reserved keyword `await`
|
|
|
|
|
|
|
|
struct W<T, U>(T, U);
|
|
|
|
struct B { f: Box<u8> }
|
|
|
|
let mut W(mut a, W(b, W(ref c, W(d, B { box f }))))
|
|
|
|
//~^ ERROR `mut` must be attached to each individual binding
|
|
|
|
= W(0, W(1, W(2, W(3, B { f: Box::new(4u8) }))));
|
2013-10-22 23:51:45 -04:00
|
|
|
}
|