Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
OptInWithArrayArgument.fir.kt
blob: 485d7378d6ed490a4b13ac09aeab69e4a656eb09 [
file
]
// ISSUE: KT-65844
@RequiresOptIn
annotation
class
MyOptIn
@MyOptIn
fun foo
()
{}
@OptIn
(
markerClass
=
[
MyOptIn
::
class
])
// should be ok
class
MyClass
{
fun test
()
{
foo
()
}
}