Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceInvokeIntention/namedArgumentInvoke.kt.after
T
2015-05-14 01:10:05 +03:00

8 lines
126 B
Plaintext

fun test() {
class Test {
fun invoke(a: Int, b: String) {}
}
val test = Test()
test(b = "s", a = 1)
}