summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mismatched_types/binops.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/mismatched_types/binops.rs')
-rw-r--r--src/test/ui/mismatched_types/binops.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/test/ui/mismatched_types/binops.rs b/src/test/ui/mismatched_types/binops.rs
deleted file mode 100644
index f359451df..000000000
--- a/src/test/ui/mismatched_types/binops.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-fn main() {
- 1 + Some(1); //~ ERROR cannot add `Option<{integer}>` to `{integer}`
- 2 as usize - Some(1); //~ ERROR cannot subtract `Option<{integer}>` from `usize`
- 3 * (); //~ ERROR cannot multiply `{integer}` by `()`
- 4 / ""; //~ ERROR cannot divide `{integer}` by `&str`
- 5 < String::new(); //~ ERROR can't compare `{integer}` with `String`
- 6 == Ok(1); //~ ERROR can't compare `{integer}` with `Result<{integer}, _>`
-}