Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0114e07472e7613fb80622821692cfa9e6922f31
/
.
/
compiler
/
fir
/
analysis-tests
/
testData
/
resolve
/
falseRedundantConversionMethodOnThisProperty.kt
blob: dbd0dc557322e3c3b3789d4817f8971ad772c2bb [
file
] [
log
] [
blame
]
// RUN_PIPELINE_TILL: BACKEND
// WITH_EXPERIMENTAL_CHECKERS
// WITH_EXTRA_CHECKERS
class
Test
{
var
number
:
Int
=
10
}
fun
Test
.
foo
()
{
val number
=
20
this
.
number
=
number
+
1
}