Skip to content

Commit 9ec176f

Browse files
committed
add missing print
1 parent 0ecd49a commit 9ec176f

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)