blob: 767500fb70dc2a2855a0332f7a165f7b109b9011 [file]
annotation class Simple
class My(@Deprecated(message = "Please don't use this bad callable", level = DeprecationLevel.WARNING) @Simple val x: String)
fun main() {
val my = My("")
my.x
}