Files
kotlin-fork/idea/testData/quickfix/migration/conflictingExtension/wrongExplicitThis.kt
T
Alexey Sedunov d13ac6b5a4 Intentions: Move class member to companion object
#KT-9697 In Progress
2016-02-04 12:26:18 +03:00

9 lines
222 B
Kotlin
Vendored

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