summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/type-mismatch-multiple.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/type/type-mismatch-multiple.stderr')
-rw-r--r--src/test/ui/type/type-mismatch-multiple.stderr19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/ui/type/type-mismatch-multiple.stderr b/src/test/ui/type/type-mismatch-multiple.stderr
deleted file mode 100644
index 2e8654d31..000000000
--- a/src/test/ui/type/type-mismatch-multiple.stderr
+++ /dev/null
@@ -1,19 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/type-mismatch-multiple.rs:3:27
- |
-LL | fn main() { let a: bool = 1; let b: i32 = true; }
- | ---- ^ expected `bool`, found integer
- | |
- | expected due to this
-
-error[E0308]: mismatched types
- --> $DIR/type-mismatch-multiple.rs:3:43
- |
-LL | fn main() { let a: bool = 1; let b: i32 = true; }
- | --- ^^^^ expected `i32`, found `bool`
- | |
- | expected due to this
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0308`.