2016-04-24 13:35:50 -05:00
|
|
|
fn main() {
|
2022-06-07 23:40:55 -05:00
|
|
|
let box = 0;
|
|
|
|
//~^ ERROR expected pattern, found `=`
|
|
|
|
let box: bool;
|
|
|
|
//~^ ERROR expected pattern, found `:`
|
|
|
|
let mut box = 0;
|
|
|
|
//~^ ERROR expected pattern, found `=`
|
|
|
|
let (box,) = (0,);
|
|
|
|
//~^ ERROR expected pattern, found `,`
|
2016-04-24 13:35:50 -05:00
|
|
|
}
|