Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
migration
/
conflictingExtension
/
wrongExplicitThis2.kt
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
)
}
}