summaryrefslogtreecommitdiffstats
path: root/tests/ui/type/type-check/point-at-inference-3.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/type/type-check/point-at-inference-3.fixed')
-rw-r--r--tests/ui/type/type-check/point-at-inference-3.fixed11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/type/type-check/point-at-inference-3.fixed b/tests/ui/type/type-check/point-at-inference-3.fixed
new file mode 100644
index 000000000..44c057c0d
--- /dev/null
+++ b/tests/ui/type/type-check/point-at-inference-3.fixed
@@ -0,0 +1,11 @@
+// run-rustfix
+fn main() {
+ let mut v = Vec::new();
+ v.push(0i32);
+ v.push(0);
+ v.push(1i32); //~ ERROR mismatched types
+ //~^ NOTE expected `i32`, found `u32`
+ //~| NOTE arguments to this method are incorrect
+ //~| NOTE associated function defined here
+ //~| HELP change the type of the numeric literal from `u32` to `i32`
+}