Support KCallable.call

#KT-2187 Fixed
This commit is contained in:
Alexander Udalov
2015-07-16 21:45:28 +03:00
parent ffe32e0b6d
commit e079b8f425
22 changed files with 462 additions and 3 deletions
@@ -0,0 +1,8 @@
class A {
class Nested(val result: String)
inner class Inner(val result: String)
}
fun box(): String {
return (A::Nested).call("O").result + (A::Inner).call((::A).call(), "K").result
}