2019-04-22 19:37:23 -07:00
|
|
|
// run-rustfix
|
2021-06-10 20:39:05 -07:00
|
|
|
// rustfix-only-machine-applicable
|
2019-04-22 19:37:23 -07:00
|
|
|
#![allow(unused_variables)]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_must_use)]
|
|
|
|
|
|
|
|
fn foo() -> i32 {
|
|
|
|
({2}) + {2} //~ ERROR expected expression, found `+`
|
|
|
|
//~^ ERROR mismatched types
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar() -> i32 {
|
|
|
|
({2}) + 2 //~ ERROR expected expression, found `+`
|
|
|
|
//~^ ERROR mismatched types
|
|
|
|
}
|
|
|
|
|
|
|
|
fn zul() -> u32 {
|
|
|
|
let foo = 3;
|
|
|
|
({ 42 }) + foo; //~ ERROR expected expression, found `+`
|
|
|
|
//~^ ERROR mismatched types
|
|
|
|
32
|
|
|
|
}
|
|
|
|
|
|
|
|
fn baz() -> i32 {
|
|
|
|
({ 3 }) * 3 //~ ERROR type `{integer}` cannot be dereferenced
|
|
|
|
//~^ ERROR mismatched types
|
|
|
|
}
|
|
|
|
|
2019-04-29 14:35:09 -07:00
|
|
|
fn moo(x: u32) -> bool {
|
|
|
|
(match x {
|
|
|
|
_ => 1,
|
2019-04-30 20:37:42 -07:00
|
|
|
}) > 0 //~ ERROR expected expression
|
2019-04-29 14:35:09 -07:00
|
|
|
}
|
|
|
|
|
2019-04-22 19:37:23 -07:00
|
|
|
fn main() {}
|