summaryrefslogtreecommitdiffstats
path: root/src/test/ui/numbers-arithmetic/i8-incr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/numbers-arithmetic/i8-incr.rs')
-rw-r--r--src/test/ui/numbers-arithmetic/i8-incr.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/ui/numbers-arithmetic/i8-incr.rs b/src/test/ui/numbers-arithmetic/i8-incr.rs
deleted file mode 100644
index 718d259f7..000000000
--- a/src/test/ui/numbers-arithmetic/i8-incr.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-// run-pass
-
-
-
-
-pub fn main() {
- let mut x: i8 = -12;
- let y: i8 = -12;
- x = x + 1;
- x = x - 1;
- assert_eq!(x, y);
-}