Filename case fixed
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user