3612c2983e
This can fix a lot of issues related to inexact generation, in particular #KT-27093 Fixed
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() {
|
|
}
|
|
}
|
|
|
|
} |