Files
kotlin-fork/idea/testData/multiModuleQuickFix/nested/jvm/WithNested.kt.after
T
Mikhail Glukhikh 3612c2983e Use OverrideMemberChooserObject to generate actual decls in quick-fixes
This can fix a lot of issues related to inexact generation, in particular
#KT-27093 Fixed
2018-11-21 15:12:59 +03:00

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() {
}
}
}