blob: 82fc66eb9e4b12fb3df58dfb96aaf71790c04a55 [file] [log] [blame]
class ExplicitAccessorForAnnotation {
val tt: String? = "good"
get
fun foo(): String {
if (tt is String) {
return <!SMARTCAST_IMPOSSIBLE!>tt<!>
}
return ""
}
}