Files
kotlin-fork/idea/testData/multiModuleQuickFix/expectProperty/jvm/Utils.kt.after
T
2018-11-21 15:13:01 +03:00

6 lines
172 B
Plaintext
Vendored

// "Create expected property in common module testModule_Common" "true"
// DISABLE-ERRORS
actual var foo: String
get() = field * field
set(value) { field = value }