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
14 lines
212 B
Kotlin
Vendored
14 lines
212 B
Kotlin
Vendored
// "Create header class implementation for platform JVM" "true"
|
|
|
|
header class <caret>WithNested {
|
|
fun foo(): Int
|
|
|
|
class Nested {
|
|
fun bar()
|
|
}
|
|
|
|
inner class Inner {
|
|
fun baz()
|
|
}
|
|
}
|