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