Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
explicitDefaultGetter.kt
blob: 82fc66eb9e4b12fb3df58dfb96aaf71790c04a55 [
file
] [
log
] [
blame
]
class
ExplicitAccessorForAnnotation
{
val tt
:
String
?
=
"good"
get
fun foo
():
String
{
if
(
tt
is
String
)
{
return
<!
SMARTCAST_IMPOSSIBLE
!>
tt
<!>
}
return
""
}
}