Files
kotlin-fork/idea/testData/intentions/movePropertyToConstructor/simpleAnnotation.kt
T
2017-03-24 15:22:50 +03:00

5 lines
111 B
Kotlin
Vendored

annotation class SuperAnnotation
class TestClass(text: String) {
@SuperAnnotation val <caret>text = text
}