Files
kotlin-fork/idea/testData/multiModuleQuickFix/nested/jvm/WithNested.kt.after
T
Alexander Udalov d1cff41ce0 Treat nested class of header class as header
Note that the quick fix to implement header class works incorrectly when
that class has nested classes at the moment; this should be fixed
separately

 #KT-15494 Fixed
 #KT-18573 Fixed
2017-08-25 15:40:37 +03:00

15 lines
292 B
Plaintext
Vendored

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