Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
deprecated
/
thisUsage.kt
blob: 621732d1754d4dfe4ae75baa06f143aa4318e251 [
file
]
// FIR_IDENTICAL
// DIAGNOSTICS: -UNUSED_VARIABLE
@Deprecated
(
"Use A instead"
)
open
class
MyClass
{
fun foo
()
{
val test
=
this
}
}