1898df3fb7
#KT-13854 Fixed
7 lines
195 B
Kotlin
Vendored
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
|
|
} |