Files
kotlin-fork/idea/resources/intentionDescriptions/ConvertPropertyInitializerToGetterIntention/after.kt.template
T
Anton Sukhonosenko da5f71773a #KT-9938 Fixed
Code review fixes
2015-12-07 22:48:47 +03:00

4 lines
59 B
Plaintext

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