Files
kotlin-fork/idea/testData/inspectionsLocal/redundantCompanionReference/methodArgument.kt
T

15 lines
153 B
Kotlin
Vendored

// PROBLEM: none
class C {
companion object {
}
}
class Test {
fun foo(i: Any) {
}
fun test() {
this.foo(<caret>C)
}
}