Files
kotlin-fork/idea/testData/multiModuleQuickFix/other/convertPropertyGetterToInitializer/header/header.kt
T
2019-08-27 17:26:08 +07:00

7 lines
195 B
Kotlin
Vendored

// "Convert property getter to initializer" "false"
// ERROR: Expected declaration must not have a body
// ACTION: Convert to block body
expect class C {
val p: Int
<caret>get() = 1
}