-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add point-at-inference ui test for wrong arity case
- Loading branch information
Showing
2 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
struct S<A, B>(Option<(A, B)>); | ||
|
||
impl<A, B> S<A, B> { | ||
fn infer(&self, a: A, b: B) {} | ||
//~^ NOTE associated function defined here | ||
//~| NOTE | ||
//~| NOTE | ||
} | ||
|
||
fn main() { | ||
let s = S(None); | ||
s.infer(0i32); | ||
//~^ ERROR this method takes 2 arguments but 1 argument was supplied | ||
//~| NOTE an argument is missing | ||
//~| HELP provide the argument | ||
//~| NOTE this is of type `i32`, which causes `s` to be inferred as `S<i32, _>` | ||
//~| HELP change the type of the numeric literal from `i32` to `u32` | ||
let t: S<u32, _> = s; | ||
//~^ ERROR mismatched types | ||
//~| NOTE expected `S<u32, _>`, found `S<i32, _>` | ||
//~| NOTE expected due to this | ||
//~| NOTE expected struct `S<u32, _>` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
error[E0061]: this method takes 2 arguments but 1 argument was supplied | ||
--> $DIR/point-at-inference-4.rs:12:7 | ||
| | ||
LL | s.infer(0i32); | ||
| ^^^^^------ an argument is missing | ||
| | ||
note: associated function defined here | ||
--> $DIR/point-at-inference-4.rs:4:8 | ||
| | ||
LL | fn infer(&self, a: A, b: B) {} | ||
| ^^^^^ ---- ---- | ||
help: provide the argument | ||
| | ||
LL | s.infer(0i32, /* b */); | ||
| ~~~~~~~~~~~~~~~ | ||
|
||
error[E0308]: mismatched types | ||
--> $DIR/point-at-inference-4.rs:18:24 | ||
| | ||
LL | s.infer(0i32); | ||
| ---- this is of type `i32`, which causes `s` to be inferred as `S<i32, _>` | ||
... | ||
LL | let t: S<u32, _> = s; | ||
| --------- ^ expected `S<u32, _>`, found `S<i32, _>` | ||
| | | ||
| expected due to this | ||
| | ||
= note: expected struct `S<u32, _>` | ||
found struct `S<i32, _>` | ||
help: change the type of the numeric literal from `i32` to `u32` | ||
| | ||
LL | s.infer(0u32); | ||
| ~~~ | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
Some errors have detailed explanations: E0061, E0308. | ||
For more information about an error, try `rustc --explain E0061`. |