Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
cli
/
jvm
/
annotationDefaultTargetWithSuppressedOptIn.kt
blob: 84d207ef9d983f36e153826200aa1d3b76167c7e [
file
]
@RequiresOptIn
(
level
=
RequiresOptIn
.
Level
.
WARNING
)
annotation
class
Marker
class
My
(
@Suppress
(
"OPT_IN_MARKER_ON_WRONG_TARGET"
)
@Marker
val x
:
String
)
fun main
()
{
val
my
=
My
(
""
)
my
.
x
}