blob: 2f77a17b8d86ea7298eb4e8ffb0d71dd7ce858f8 [file] [log] [blame]
// "Delete redundant extension property" "false"
// ACTION: Move to companion object
// ACTION: Remove explicit type specification
class C : Thread() {
var Thread.<caret>priority: Int
get() = getPriority()
set(value) {
this@C.setPriority(value)
}
}