Filename case fixed

This commit is contained in:
Andrey Breslav
2014-03-20 11:26:53 +04:00
parent 9577c5c6ff
commit 2a724a6eb4
@@ -0,0 +1,12 @@
package foo
class A
class B {
fun A.invoke(i: Int) = i
}
fun box(): Boolean {
val a = A()
val b = B()
return a.(b)(1) == 1
}