mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
15 lines
330 B
Plaintext
Vendored
15 lines
330 B
Plaintext
Vendored
// WithNested: to be implemented
|
|
actual class WithNested {
|
|
actual fun foo(): Int {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
|
|
actual class Nested {
|
|
actual fun bar() {}
|
|
}
|
|
|
|
actual inner class Inner {
|
|
actual fun baz() {}
|
|
}
|
|
|
|
} |