2abcd17713
#KT-10668 Fixed (cherry picked from commit bc4c013)
13 lines
171 B
Kotlin
Vendored
13 lines
171 B
Kotlin
Vendored
// "Create extension function 'foo'" "true"
|
|
// WITH_RUNTIME
|
|
fun bar(b: Boolean) {
|
|
|
|
}
|
|
|
|
class A(val n: Int)
|
|
|
|
fun test() {
|
|
with(A(1)) {
|
|
bar(<caret>foo(n))
|
|
}
|
|
} |