summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-10-07 14:58:33 -0700
committerPaul Phillips <paulp@improving.org>2012-10-07 14:58:33 -0700
commit7be1652cbf1300fe5fea44681a480c33467c2296 (patch)
tree1401f20d52d5b5992f77bae853a8603585aa7d9b /test
parente47b45864118c16d260cac364d34dc0375c31fab (diff)
parent1b4251288c1305d6cd5174d21785fddb26f2053d (diff)
downloadscala-7be1652cbf1300fe5fea44681a480c33467c2296.tar.gz
scala-7be1652cbf1300fe5fea44681a480c33467c2296.tar.bz2
scala-7be1652cbf1300fe5fea44681a480c33467c2296.zip
Merge pull request #1382 from paulp/topic/tpe_star
Defanged dummy type arguments.
Diffstat (limited to 'test')
-rw-r--r--test/files/neg/array-not-seq.check15
-rw-r--r--test/files/neg/array-not-seq.flags1
-rw-r--r--test/files/neg/array-not-seq.scala26
3 files changed, 0 insertions, 42 deletions
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))
- }
-}