summaryrefslogtreecommitdiff
path: root/test/files/run/t4062.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t4062.scala')
-rw-r--r--test/files/run/t4062.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t4062.scala b/test/files/run/t4062.scala
index 6a5aea5b47..f5478e7593 100644
--- a/test/files/run/t4062.scala
+++ b/test/files/run/t4062.scala
@@ -1,7 +1,7 @@
class A(val f : String)
class B(f: String) extends A(f) {
- def foo(x: String) = x match {
+ def foo(x: String) = x match {
case `f` => true
case _ => false
}