Files
kotlin-fork/compiler/testData/multiplatform/incompatibleNestedClasses/common.kt
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

20 lines
230 B
Kotlin
Vendored

header class O1 {
class N1
interface N2
object N3
}
header class O2 {
class N2
inner class I2
}
header class O3 {
object Companion
companion object Factory
}
header class O4 {
companion object
}