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