summaryrefslogtreecommitdiff
path: root/test/files/pos/t5899.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2012-06-26 11:05:25 +0200
committerAdriaan Moors <adriaan.moors@epfl.ch>2012-06-26 20:17:57 +0200
commit966c9bbebec78b90a79f72c73b55d9de6db34798 (patch)
tree9b9b8060cbe0250ddb65ceb2d9e2652ef5973f0f /test/files/pos/t5899.scala
parent3601b34fb7bbd60f6f25d3bf44edc653aa7ba45b (diff)
downloadscala-966c9bbebec78b90a79f72c73b55d9de6db34798.tar.gz
scala-966c9bbebec78b90a79f72c73b55d9de6db34798.tar.bz2
scala-966c9bbebec78b90a79f72c73b55d9de6db34798.zip
SI-5899 exhaustiveness for non-class types
Diffstat (limited to 'test/files/pos/t5899.scala')
-rw-r--r--test/files/pos/t5899.scala19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/files/pos/t5899.scala b/test/files/pos/t5899.scala
new file mode 100644
index 0000000000..b16f1f84fe
--- /dev/null
+++ b/test/files/pos/t5899.scala
@@ -0,0 +1,19 @@
+import scala.tools.nsc._
+
+trait Foo {
+ val global: Global
+ import global.{Name, Symbol, nme}
+
+ case class Bippy(name: Name)
+
+ def f(x: Bippy, sym: Symbol): Int = {
+ // no warning (!) for
+ // val Stable = sym.name.toTermName
+
+ val Stable = sym.name
+ Bippy(Stable) match {
+ case Bippy(nme.WILDCARD) => 1
+ case Bippy(Stable) => 2 // should not be considered unreachable
+ }
+ }
+} \ No newline at end of file