mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
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()
|
|
}
|
|
}
|