Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
deprecated
/
annotationUsage.kt
blob: 0a4afb2f96db73b8d59a8fcd0cc9dc2490aea0f0 [
file
]
// FIR_IDENTICAL
@Deprecated
(
"text"
)
annotation
class
obsolete
()
@Deprecated
(
"text"
)
annotation
class
obsoleteWithParam
(
val text
:
String
)
@<!
DEPRECATION
!>
obsolete
<!>
class
Obsolete
@<!
DEPRECATION
!>
obsoleteWithParam
<!>(
"text"
)
class
Obsolete2