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