49b6811b44
#KT-7492 Fixed (cherry picked from commit 75f6b7f)
8 lines
141 B
Kotlin
Vendored
8 lines
141 B
Kotlin
Vendored
// "Create abstract function 'foo'" "true"
|
|
interface A {
|
|
fun bar(b: Boolean) {}
|
|
|
|
fun test() {
|
|
bar(<caret>foo(1, "2"))
|
|
}
|
|
} |