summaryrefslogtreecommitdiff
path: root/test/files/neg/unchecked.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/unchecked.scala')
-rw-r--r--test/files/neg/unchecked.scala11
1 files changed, 0 insertions, 11 deletions
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")
- }
- }
-}