d54a35ef56
#KT-34026 Fixed #KT-34332 Fixed
16 lines
326 B
Kotlin
Vendored
16 lines
326 B
Kotlin
Vendored
// "Remove argument" "false"
|
|
// ACTION: Add 'i =' to argument
|
|
// ACTION: Convert to also
|
|
// ACTION: Convert to apply
|
|
// ACTION: Convert to run
|
|
// ACTION: Convert to with
|
|
// ACTION: Put arguments on separate lines
|
|
class Bar() {
|
|
fun foo(s: String, i: Int) {
|
|
}
|
|
}
|
|
|
|
fun main() {
|
|
val b = Bar()
|
|
b.foo("a", 1<caret>)
|
|
} |