4d9b19da82
#KT-18539 Fixed
17 lines
276 B
Plaintext
Vendored
17 lines
276 B
Plaintext
Vendored
// WithNested: to be implemented
|
|
actual class WithNested {
|
|
actual fun foo(): Int {
|
|
TODO("Not yet implemented")
|
|
}
|
|
|
|
actual class Nested {
|
|
actual fun bar() {
|
|
}
|
|
}
|
|
|
|
actual inner class Inner {
|
|
actual fun baz() {
|
|
}
|
|
}
|
|
|
|
} |