Files
kotlin-fork/idea/testData/multiModuleQuickFix/expectNestedClass/common/My.kt.after
T
2018-11-21 15:13:01 +03:00

13 lines
209 B
Plaintext
Vendored

// DISABLE-ERRORS
expect class My {
inner class Nested(s: String) {
fun hello(): String
var ss: String
class OtherNested(d: Double) {
val dd: Double
}
}
}