summaryrefslogtreecommitdiff
path: root/test/files/jvm/patmat_opt_ignore_underscore/Analyzed_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/patmat_opt_ignore_underscore/Analyzed_1.scala')
-rw-r--r--test/files/jvm/patmat_opt_ignore_underscore/Analyzed_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/jvm/patmat_opt_ignore_underscore/Analyzed_1.scala b/test/files/jvm/patmat_opt_ignore_underscore/Analyzed_1.scala
index fa3639380d..b0506018f6 100644
--- a/test/files/jvm/patmat_opt_ignore_underscore/Analyzed_1.scala
+++ b/test/files/jvm/patmat_opt_ignore_underscore/Analyzed_1.scala
@@ -6,7 +6,7 @@
class SameBytecode {
case class Foo(x: Any, y: String)
- def a =
+ def a =
Foo(1, "a") match {
case Foo(_: String, y) => y
}