Files
kotlin-fork/idea/testData/multiModuleQuickFix/convertPropertyGetterToInitializer/header/header.kt
T
2018-08-14 15:32:20 +03: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
}