Files
kotlin-fork/idea/testData/quickfix/migration/deleteRedundantExtension/wrongExplicitThis.kt
T

8 lines
186 B
Kotlin
Vendored

// "Delete redundant extension property" "false"
// ACTION: Convert property to function
class C : Thread() {
val Thread.<caret>priority: Int
get() = this@C.getPriority()
}