Files
kotlin-fork/idea/testData/quickfix/removeUnusedReceiver/inFunction.kt
T
2016-08-18 19:15:36 +03:00

8 lines
101 B
Kotlin
Vendored

// "Remove redundant receiver parameter" "true"
fun <caret>Any.foo() {
}
fun test() {
1.foo()
}