Files
kotlin-fork/idea/testData/multiModuleQuickFix/other/classPropertyInConstructor/jvm/My.kt.after
T
2019-08-27 17:26:08 +07:00

7 lines
260 B
Plaintext
Vendored

// "Add missing actual members" "true"
// DISABLE-ERRORS
actual class <caret>My(actual val name: String) {
actual val age: String
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
}