Files
kotlin/idea/testData/multiModuleQuickFix/nested/jvm/WithNested.kt.after
2017-01-05 22:30:31 +03:00

15 lines
313 B
Plaintext
Vendored

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