about summary refs log tree commit diff
path: root/src/test/ui/compiletest-self-test/ui-testing-optout.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/compiletest-self-test/ui-testing-optout.rs')
-rw-r--r--src/test/ui/compiletest-self-test/ui-testing-optout.rs94
1 files changed, 0 insertions, 94 deletions
diff --git a/src/test/ui/compiletest-self-test/ui-testing-optout.rs b/src/test/ui/compiletest-self-test/ui-testing-optout.rs
deleted file mode 100644
index 88e81158316..00000000000
--- a/src/test/ui/compiletest-self-test/ui-testing-optout.rs
+++ /dev/null
@@ -1,94 +0,0 @@
-// compile-flags: -Z ui-testing=no
-
-// Line number < 10
-type A = B; //~ ERROR
-
-// Line number >=10, <100
-type C = D; //~ ERROR
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// Line num >=100
-type E = F; //~ ERROR
-
-fn main() {}