summaryrefslogtreecommitdiff
path: root/test/files/neg/exhausting.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/exhausting.scala')
-rw-r--r--test/files/neg/exhausting.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/exhausting.scala b/test/files/neg/exhausting.scala
index 01c34f7039..c00569c91d 100644
--- a/test/files/neg/exhausting.scala
+++ b/test/files/neg/exhausting.scala
@@ -3,7 +3,7 @@ object Test {
case object Bar1 extends Foo[Int]
case object Bar2 extends Foo[String]
case object Bar3 extends Foo[Any]
-
+
def ex1[T](xs: List[T]) = xs match {
case ys: List[_] => "ok"
}