Files
kotlin-fork/idea/testData/quickfix/changeSignature/addForItParameter.kt.after
T
2019-12-17 11:10:15 +03:00

8 lines
138 B
Plaintext
Vendored

// "Add parameter to constructor 'Foo'" "true"
// WITH_RUNTIME
class Foo(s: String)
fun test(name: String) {
name.also { Foo(it) }
}