Files
kotlin/idea/testData/multiModuleQuickFix/nested/jvm/WithNested.kt.after

15 lines
296 B
Plaintext
Vendored

// WithNested: to be implemented
actual class WithNested {
class Nested {
fun bar()
}
inner class Inner {
fun baz()
}
actual fun foo(): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}