Skip to content

Commit e4a6d72

Browse files
liufengyunodersky
authored andcommitted
add missing print
1 parent ff78265 commit e4a6d72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/run/i2163.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
class Base(f: Int => Int) {
2-
f(3)
2+
println(f(3))
33
}
44

55
class Child(x: Int) extends Base(y => x + y)

0 commit comments

Comments
 (0)