Files
kotlin-fork/compiler/testData/lineNumber/custom/chainCall.kt
T
2014-12-23 14:40:26 +03:00

16 lines
170 B
Kotlin

class A {
fun foo() = this
inline fun bar() = this
}
fun foo() {
val a = A()
a.foo()
.foo()
a.bar()
.bar()
}
// 2 3 7 8 9 11 12 13