Files
kotlin-fork/idea/testData/quickfix/migration/conflictingExtension/wrongExplicitThis.kt
T
2016-11-15 09:30:13 +03:00

10 lines
268 B
Kotlin
Vendored

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