Files
kotlin/idea/testData/multiModuleQuickFix/nested/header/header.kt.after
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

14 lines
205 B
Plaintext
Vendored

// "Create header class implementation for platform JVM" "true"
header class WithNested {
fun foo(): Int
class Nested {
fun bar()
}
inner class Inner {
fun baz()
}
}