14 lines
201 B
Kotlin
Vendored
14 lines
201 B
Kotlin
Vendored
// "Create actual class for module jvm (JVM)" "true"
|
|
|
|
expect class <caret>WithNested {
|
|
fun foo(): Int
|
|
|
|
class Nested {
|
|
fun bar()
|
|
}
|
|
|
|
inner class Inner {
|
|
fun baz()
|
|
}
|
|
}
|