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

7 lines
97 B
Kotlin
Vendored

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