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