d54a35ef56
#KT-34026 Fixed #KT-34332 Fixed
10 lines
156 B
Kotlin
Vendored
10 lines
156 B
Kotlin
Vendored
// "Remove argument" "true"
|
|
class Bar(s: String, i: Int) {
|
|
fun foo(s: String) {
|
|
}
|
|
}
|
|
|
|
fun main() {
|
|
val b = Bar("2", 1)
|
|
b.foo("a", 1<caret>)
|
|
} |