8728bc0820
#KT-30228 Fixed
13 lines
163 B
Plaintext
Vendored
13 lines
163 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
class A {
|
|
fun foo() {}
|
|
}
|
|
fun baz(a: A): Int = 1
|
|
|
|
fun test() {
|
|
val a = A().apply {
|
|
foo()
|
|
1 + baz(this)
|
|
foo()
|
|
}
|
|
} |