Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
deprecated
/
objectUsage.kt
blob: 48663226082037fad6001702d279e5ca2b00864f [
file
]
// FIR_IDENTICAL
@Deprecated
(
"Object"
)
object
Obsolete
{
fun
use
()
{}
}
fun useObject
()
{
<!
DEPRECATION
!>
Obsolete
<!>.
use
()
val x
=
<!
DEPRECATION
!>
Obsolete
<!>
}