Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/call/unitFun.kt.after

10 lines
202 B
Plaintext
Vendored

// "Create function 'foo'" "true"
fun test() {
foo(2, "2")
}
fun foo(i: Int, s: String) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}