2019-04-23 02:37:23 +00:00
|
|
|
// run-rustfix
|
2021-06-11 03:39:05 +00:00
|
|
|
// rustfix-only-machine-applicable
|
2019-04-23 02:37:23 +00:00
|
|
|
#![allow(unused_variables)]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_must_use)]
|
|
|
|
|
|
|
|
fn foo() -> i32 {
|
2021-09-05 02:35:59 +00:00
|
|
|
({2}) + {2} //~ ERROR expected expression, found `+`
|
2019-04-23 02:37:23 +00:00
|
|
|
//~^ ERROR mismatched types
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar() -> i32 {
|
2021-09-01 15:54:06 +00:00
|
|
|
({2}) + 2 //~ ERROR leading `+` is not supported
|
2019-04-23 02:37:23 +00:00
|
|
|
//~^ ERROR mismatched types
|
|
|
|
}
|
|
|
|
|
|
|
|
fn zul() -> u32 {
|
|
|
|
let foo = 3;
|
2021-09-05 02:35:59 +00:00
|
|
|
({ 42 }) + foo; //~ ERROR expected expression, found `+`
|
2019-04-23 02:37:23 +00:00
|
|
|
//~^ ERROR mismatched types
|
|
|
|
32
|
|
|
|
}
|
|
|
|
|
|
|
|
fn baz() -> i32 {
|
|
|
|
({ 3 }) * 3 //~ ERROR type `{integer}` cannot be dereferenced
|
|
|
|
//~^ ERROR mismatched types
|
|
|
|
}
|
|
|
|
|
2019-04-29 21:35:09 +00:00
|
|
|
fn moo(x: u32) -> bool {
|
|
|
|
(match x {
|
|
|
|
_ => 1,
|
2019-05-01 03:37:42 +00:00
|
|
|
}) > 0 //~ ERROR expected expression
|
2019-04-29 21:35:09 +00:00
|
|
|
}
|
|
|
|
|
2021-09-06 22:30:20 +00:00
|
|
|
fn qux() -> u32 {
|
|
|
|
({2}) - 2 //~ ERROR cannot apply unary operator `-` to type `u32`
|
|
|
|
//~^ ERROR mismatched types
|
|
|
|
}
|
|
|
|
|
2019-04-23 02:37:23 +00:00
|
|
|
fn main() {}
|