d1cff41ce0
Note that the quick fix to implement header class works incorrectly when that class has nested classes at the moment; this should be fixed separately #KT-15494 Fixed #KT-18573 Fixed
15 lines
292 B
Plaintext
Vendored
15 lines
292 B
Plaintext
Vendored
// WithNested: to be implemented
|
|
impl class WithNested {
|
|
|
|
class Nested {
|
|
fun bar()
|
|
}
|
|
|
|
inner class Inner {
|
|
fun baz()
|
|
}
|
|
|
|
impl fun foo(): Int {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
} |