Files
kotlin-fork/idea/testData/inspectionsLocal/redundantCompanionReference/javaFakeSetter.kt.after
T
2019-10-17 17:17:44 +07:00

9 lines
126 B
Plaintext
Vendored

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