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

7 lines
110 B
Kotlin
Vendored

// "Remove redundant receiver parameter" "true"
val <caret>Any.v: Int
get() = 123
fun test() {
"".v
}