Files
kotlin-fork/idea/testData/intentions/introduceBackingProperty/inapplicableNoBackingField.kt
T
Dmitry Jemerov 9de74921ca code review
2015-09-25 18:25:38 +02:00

7 lines
79 B
Kotlin
Vendored

// IS_APPLICABLE: false
class Foo {
val <caret>x: Int
get() = 1
}