blob: f5931a1baea11d83872b2d4ce86e55ce3f4b31d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Ensure we don't suggest tuple-wrapping when we'd end up with a type error
fn main() {
// we shouldn't suggest to fix these - `2` isn't a `bool`
let _: Option<(i32, bool)> = Some(1, 2);
//~^ ERROR this enum variant takes 1 argument but 2 arguments were supplied
int_bool(1, 2);
//~^ ERROR function takes 1 argument but 2 arguments were supplied
let _: Option<(i8,)> = Some();
//~^ ERROR this enum variant takes 1 argument but 0 arguments were supplied
let _: Option<(i32,)> = Some(5_usize);
//~^ ERROR mismatched types
let _: Option<(i32,)> = Some((5_usize));
//~^ ERROR mismatched types
}
fn int_bool(_: (i32, bool)) {
}
|