Files
kotlin-fork/idea/testData/inspectionsLocal/redundantCompanionReference/javaSetterWithoutGetter.kt.after
T
2020-01-30 15:55:47 +03:00

9 lines
126 B
Plaintext
Vendored

class Foo : Bar() {
fun test() {
bar = "baz"
}
companion object {
var bar: String = "bar"
}
}