Files
kotlin-fork/idea/testData/intentions/convertPropertyGetterToInitializer/inInterface.kt
T
2018-08-14 15:32:20 +03:00

5 lines
79 B
Kotlin
Vendored

// IS_APPLICABLE: false
interface I {
val p: Int
<caret>get() = 1
}