blob: 596c0254eff80cb1dcb7c3a1cdfb4392545426de [file]
@RequiresOptIn(level = RequiresOptIn.Level.WARNING)
annotation class Marker
class My(@Marker val x: String)
fun main() {
val my = My("")
my.x
}