17 lines
348 B
Plaintext
Vendored
17 lines
348 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() {
|
|
}
|
|
}
|
|
|
|
} |