summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lang-items/issue-31076.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/lang-items/issue-31076.stderr')
-rw-r--r--src/test/ui/lang-items/issue-31076.stderr19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/ui/lang-items/issue-31076.stderr b/src/test/ui/lang-items/issue-31076.stderr
deleted file mode 100644
index ac0d9dc75..000000000
--- a/src/test/ui/lang-items/issue-31076.stderr
+++ /dev/null
@@ -1,19 +0,0 @@
-error[E0369]: cannot add `i32` to `{integer}`
- --> $DIR/issue-31076.rs:13:15
- |
-LL | let x = 5 + 6;
- | - ^ - i32
- | |
- | {integer}
-
-error[E0369]: cannot add `i32` to `i32`
- --> $DIR/issue-31076.rs:15:18
- |
-LL | let y = 5i32 + 6i32;
- | ---- ^ ---- i32
- | |
- | i32
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0369`.