12 lines
161 B
Kotlin
Vendored
12 lines
161 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
fun test() {
|
|
val c = MyClass()
|
|
<caret>with(c) {
|
|
println(f())
|
|
}
|
|
}
|
|
|
|
class MyClass {
|
|
fun f(): String = ""
|
|
} |