Files
kotlin-fork/idea/testData/inspectionsLocal/unusedReceiverParameter/object.kt
T
Mikhail Glukhikh 6c2eb06351 Do not report "unused receiver" on companion objects
So #KT-19560 Fixed
2017-11-07 17:28:13 +03:00

8 lines
103 B
Kotlin
Vendored

object Test
fun <caret>Test.foo() = 42
fun main(args: Array<String>) {
val x = Test
x.foo()
}