Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
deprecated
/
componentUsage.kt
blob: 3d472f7e7bb3feb117bef5a5b0a407848f13221d [
file
]
// FIR_IDENTICAL
// DIAGNOSTICS: -UNUSED_VARIABLE
class
Data
{
@Deprecated
(
"text"
)
operator
fun component1
():
String
=
throw
Exception
()
operator
fun component2
():
String
=
throw
Exception
()
}
fun
use
()
{
val
(<!
DEPRECATION
!>
x
<!>,
y
)
=
Data
()
}