Files
kotlin-fork/idea/testData/inspectionsLocal/unusedReceiverParameter/functionInSameClass2.kt
T
2018-05-23 01:41:02 +03:00

9 lines
226 B
Kotlin
Vendored

// PROBLEM: none
class Test(val str: String) {
private fun <caret>Test.print() {
println(this@Test.str) // Unused receiver isn't reported because of explicit usage for parent `this`
}
}
fun println(a: Any) {}