aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t2635.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t2635.scala')
-rw-r--r--tests/untried/pos/t2635.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/untried/pos/t2635.scala b/tests/untried/pos/t2635.scala
deleted file mode 100644
index 7cd553135..000000000
--- a/tests/untried/pos/t2635.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-abstract class Base
-
-object Test
-{
- def run(c: Class[_ <: Base]): Unit = {
- }
-
- def main(args: Array[String]): Unit =
- {
- val sc: Option[Class[_ <: Base]] = Some(classOf[Base])
- sc match {
- case Some(c) => run(c)
- case None =>
- }
- }
-}