From 516fe526f40e900e13319298f472db3e63525204 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Tue, 2 Oct 2012 07:53:07 -0700 Subject: Removed obsolete migration test. Arrays are not Seqs: a fact known by all and sundry. --- test/files/neg/array-not-seq.check | 15 --------------- test/files/neg/array-not-seq.flags | 1 - test/files/neg/array-not-seq.scala | 26 -------------------------- 3 files changed, 42 deletions(-) delete mode 100644 test/files/neg/array-not-seq.check delete mode 100644 test/files/neg/array-not-seq.flags delete mode 100644 test/files/neg/array-not-seq.scala (limited to 'test/files') diff --git a/test/files/neg/array-not-seq.check b/test/files/neg/array-not-seq.check deleted file mode 100644 index 6cfaa06efb..0000000000 --- a/test/files/neg/array-not-seq.check +++ /dev/null @@ -1,15 +0,0 @@ -array-not-seq.scala:2: warning: An Array will no longer match as Seq[_]. - def f1(x: Any) = x.isInstanceOf[Seq[_]] - ^ -array-not-seq.scala:4: warning: An Array will no longer match as Seq[_]. - case _: Seq[_] => true - ^ -array-not-seq.scala:16: warning: An Array will no longer match as Seq[_]. - case (Some(_: Seq[_]), Nil, _) => 1 - ^ -array-not-seq.scala:17: warning: An Array will no longer match as Seq[_]. - case (None, List(_: List[_], _), _) => 2 - ^ -error: No warnings can be incurred under -Xfatal-warnings. -four warnings found -one error found diff --git a/test/files/neg/array-not-seq.flags b/test/files/neg/array-not-seq.flags deleted file mode 100644 index 4e9f7e4a56..0000000000 --- a/test/files/neg/array-not-seq.flags +++ /dev/null @@ -1 +0,0 @@ --Xmigration -Xfatal-warnings \ No newline at end of file diff --git a/test/files/neg/array-not-seq.scala b/test/files/neg/array-not-seq.scala deleted file mode 100644 index 5f367bdd85..0000000000 --- a/test/files/neg/array-not-seq.scala +++ /dev/null @@ -1,26 +0,0 @@ -object Test { - def f1(x: Any) = x.isInstanceOf[Seq[_]] - def f2(x: Any) = x match { - case _: Seq[_] => true - case _ => false - } - - def f3(x: Any) = x match { - case _: Array[_] => true - case _ => false - } - - def f4(x: Any) = x.isInstanceOf[Traversable[_]] - - def f5(x1: Any, x2: Any, x3: AnyRef) = (x1, x2, x3) match { - case (Some(_: Seq[_]), Nil, _) => 1 - case (None, List(_: List[_], _), _) => 2 - case _ => 3 - } - - def main(args: Array[String]): Unit = { - // println(f1(Array(1))) - // println(f2(Array(1))) - // println(f3(Array(1)) - } -} -- cgit v1.2.3