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
}