summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
Diffstat (limited to 'test/files')
-rw-r--r--test/files/neg/unchecked.check2
-rw-r--r--test/files/neg/unchecked.scala11
2 files changed, 0 insertions, 13 deletions
diff --git a/test/files/neg/unchecked.check b/test/files/neg/unchecked.check
deleted file mode 100644
index 0747cddefb..0000000000
--- a/test/files/neg/unchecked.check
+++ /dev/null
@@ -1,2 +0,0 @@
-warning: there were unchecked warnings; re-run with -unchecked for details
-one warning found
diff --git a/test/files/neg/unchecked.scala b/test/files/neg/unchecked.scala
deleted file mode 100644
index 6cae0642bc..0000000000
--- a/test/files/neg/unchecked.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-abstract class Test {
- type T <: Option[String]
- val x: Option[String]
- def f {
- x match {
- case x: T => Console.println("4")
- case a: Some[String] => Console.println("3")
- case None => Console.println("else case")
- }
- }
-}