Files
kotlin-fork/idea/resources/intentionDescriptions/ConvertPropertyGetterToInitializerIntention/before.kt.template
T
2018-08-14 15:32:20 +03:00

4 lines
59 B
Plaintext

class A {
val foo: Int
<spot>get() = 1</spot>
}