Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
cli
/
jvm
/
annotationDefaultTargetWithOptIn.kt
blob: 596c0254eff80cb1dcb7c3a1cdfb4392545426de [
file
]
@RequiresOptIn
(
level
=
RequiresOptIn
.
Level
.
WARNING
)
annotation
class
Marker
class
My
(
@Marker
val x
:
String
)
fun main
()
{
val
my
=
My
(
""
)
my
.
x
}