Files
kotlin-fork/idea/testData/inspectionsLocal/redundantSetter/lowerVisibility3.kt
T
2019-03-25 23:27:44 +03:00

5 lines
82 B
Kotlin
Vendored

// PROBLEM: none
class Test {
protected var x = 1
private <caret>set
}