Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
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
}