mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
14 lines
205 B
Plaintext
Vendored
14 lines
205 B
Plaintext
Vendored
// "Create actual class for module testModule_JVM (JVM)" "true"
|
|
|
|
expect class WithNested {
|
|
fun foo(): Int
|
|
|
|
class Nested {
|
|
fun bar()
|
|
}
|
|
|
|
inner class Inner {
|
|
fun baz()
|
|
}
|
|
}
|