1a13c21377
(cherry picked from commit c0d5df1)
13 lines
173 B
Kotlin
Vendored
13 lines
173 B
Kotlin
Vendored
// "Create extension function 'A.foo'" "true"
|
|
// WITH_RUNTIME
|
|
fun bar(b: Boolean) {
|
|
|
|
}
|
|
|
|
class A(val n: Int)
|
|
|
|
fun test() {
|
|
with(A(1)) {
|
|
bar(<caret>foo(n))
|
|
}
|
|
} |