Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/afterPrivateForMembers.kt
T
2015-02-04 23:38:16 +03:00

10 lines
252 B
Kotlin

// "Create function 'foo'" "true"
class A {
fun test() {
foo()
}
private fun foo() {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}