summaryrefslogtreecommitdiff
path: root/test/pending/neg/t6680a.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-10-03 15:49:24 -0700
committerPaul Phillips <paulp@improving.org>2013-10-03 15:49:24 -0700
commit90a312669b37d6e3e3f08685953ded24759e6102 (patch)
treed3cb52921c989d91420819fe5452267cda489405 /test/pending/neg/t6680a.scala
parentb9284ac33345d9e654c44af74b5e1c92a37e2c6c (diff)
parent5708e9d73ba01c286d7155606b72caeab914face (diff)
downloadscala-90a312669b37d6e3e3f08685953ded24759e6102.tar.gz
scala-90a312669b37d6e3e3f08685953ded24759e6102.tar.bz2
scala-90a312669b37d6e3e3f08685953ded24759e6102.zip
Merge pull request #3005 from paulp/pr/7886
SI-7886 unsoundness in pattern matcher.
Diffstat (limited to 'test/pending/neg/t6680a.scala')
-rw-r--r--test/pending/neg/t6680a.scala13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/pending/neg/t6680a.scala b/test/pending/neg/t6680a.scala
deleted file mode 100644
index 745334b1cd..0000000000
--- a/test/pending/neg/t6680a.scala
+++ /dev/null
@@ -1,13 +0,0 @@
-case class Cell[A](var x: A)
-object Test {
- def f1(x: Any) = x match { case y @ Cell(_) => y } // Inferred type is Cell[Any]
- // def f2(x: Cell[_]) = x match { case y @ Cell(_) => y } // Inferred type is Cell[_]
- // def f3[A](x: Cell[A]) = x match { case y @ Cell(_) => y } // Inferred type is Cell[A]
-
- def main(args: Array[String]): Unit = {
- // val x = new Cell(1)
- // val y = f1(x)
- // y.x = "abc"
- // println(x.x + 1)
- }
-} \ No newline at end of file