Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/call/afterUnitFun.kt
2014-10-14 01:59:44 +04:00

9 lines
243 B
Kotlin

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