Files
kotlin-fork/compiler/testData/resolve/delegatedProperty/localDelegation.resolve
T
2013-04-30 20:08:04 +04:00

12 lines
131 B
Plaintext

~A~class A {
~foo~fun foo() = A()
}
class B {
fun bar() {
val a: Int by `A`A().`foo`foo()
val b: Int by `A`A()
}
}