blob: 8260ab810b95dfeb54b6bf2e8e0e8a6f35b28065 [file]
class ExplicitAccessorForAnnotation {
val tt: String? = "good"
get
fun foo(): String {
if (tt is String) {
return tt
}
return ""
}
}