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