Skip to content

Commit 88871af

Browse files
committed
Add missing test file
1 parent 70fc3b6 commit 88871af

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package example
2+
3+
class TestApply {
4+
object Foo {
5+
def apply(x: Int) : Int = x
6+
}
7+
val z = Foo(1)
8+
val y = Foo.apply(1)
9+
}

0 commit comments

Comments
 (0)