5f7dee4194
#KT-29099 Fixed
12 lines
109 B
Plaintext
Vendored
12 lines
109 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
class C {
|
|
fun foo() {}
|
|
}
|
|
|
|
fun test() {
|
|
val c = C()
|
|
c.run {
|
|
foo()
|
|
}
|
|
} |