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

11 lines
244 B
Kotlin
Vendored

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