Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
aa5987fd3dbfa6d7896d481b336c9f49e48b9179
/
.
/
compiler
/
testData
/
cli
/
jvm
/
annotationDefaultTargetWithSuppressedOptIn.kt
blob: 84d207ef9d983f36e153826200aa1d3b76167c7e [
file
] [
log
] [
blame
]
@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
}