aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/scalac-dependent/pos/t5899.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/scalac-dependent/pos/t5899.scala')
-rw-r--r--tests/disabled/scalac-dependent/pos/t5899.scala19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/disabled/scalac-dependent/pos/t5899.scala b/tests/disabled/scalac-dependent/pos/t5899.scala
new file mode 100644
index 000000000..852b4e3e7
--- /dev/null
+++ b/tests/disabled/scalac-dependent/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
+ }
+ }
+}