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