e35b960eb5
#KT-3080 Fixed
16 lines
152 B
Kotlin
16 lines
152 B
Kotlin
class A {
|
|
fun foo() = this
|
|
inline fun bar() = this
|
|
}
|
|
|
|
fun foo() {
|
|
val a = A()
|
|
a
|
|
.foo()
|
|
|
|
a
|
|
.bar()
|
|
}
|
|
|
|
// 2 3 7 8 9 11 12 13
|