Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
deprecated
/
hiddenComponentInDestructuringDeclaration.kt
blob: efa895093055b68335381f1e6005a12cae140c1e [
file
]
// FIR_IDENTICAL
class
SimpleKlass
{
@Deprecated
(
"deprecated and hidden"
,
level
=
DeprecationLevel
.
HIDDEN
)
operator
fun component1
():
Int
=
42
}
fun test
(
simpleKlass
:
SimpleKlass
)
{
val
(
s1
)
=
<!
COMPONENT_FUNCTION_MISSING
!>
simpleKlass
<!>
}