Files
kotlin-fork/idea/testData/inspectionsLocal/redundantGetter/annotation.kt
T
2017-09-05 17:27:56 +02:00

7 lines
97 B
Kotlin
Vendored

// PROBLEM: none
annotation class Inject
class Test {
val x = 1
@Inject get<caret>
}