mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
14 lines
197 B
Kotlin
Vendored
14 lines
197 B
Kotlin
Vendored
// "Create actual class for platform JVM" "true"
|
|
|
|
expect class <caret>WithNested {
|
|
fun foo(): Int
|
|
|
|
class Nested {
|
|
fun bar()
|
|
}
|
|
|
|
inner class Inner {
|
|
fun baz()
|
|
}
|
|
}
|