d1cff41ce0
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
20 lines
230 B
Kotlin
Vendored
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
|
|
}
|