summaryrefslogtreecommitdiff
path: root/test/files/run/t9097.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t9097.scala')
-rw-r--r--test/files/run/t9097.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t9097.scala b/test/files/run/t9097.scala
index d2bf55fc44..aa2b23bbac 100644
--- a/test/files/run/t9097.scala
+++ b/test/files/run/t9097.scala
@@ -15,7 +15,7 @@ object Test extends StoreReporterDirectTest {
override def code = """package o
|package a {
| class C {
- | def hihi = List(1,2).map(_ * 2)
+ | def hihi = List(1,2).map(_ => "")
| }
|}
|package object a {