summaryrefslogtreecommitdiffstats
path: root/tests/ui/type/type-check/point-at-inference-3.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/type/type-check/point-at-inference-3.rs')
-rw-r--r--tests/ui/type/type-check/point-at-inference-3.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/ui/type/type-check/point-at-inference-3.rs b/tests/ui/type/type-check/point-at-inference-3.rs
index e7ae54384..49d7b5007 100644
--- a/tests/ui/type/type-check/point-at-inference-3.rs
+++ b/tests/ui/type/type-check/point-at-inference-3.rs
@@ -2,10 +2,11 @@
fn main() {
let mut v = Vec::new();
v.push(0i32);
+ //~^ NOTE this is of type `i32`, which causes `v` to be inferred as `Vec<i32>`
v.push(0);
v.push(1u32); //~ ERROR mismatched types
//~^ NOTE expected `i32`, found `u32`
//~| NOTE arguments to this method are incorrect
- //~| NOTE associated function defined here
+ //~| NOTE method defined here
//~| HELP change the type of the numeric literal from `u32` to `i32`
}