Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
explicitDefaultGetter.fir.kt
blob: 8260ab810b95dfeb54b6bf2e8e0e8a6f35b28065 [
file
]
class
ExplicitAccessorForAnnotation
{
val tt
:
String
?
=
"good"
get
fun foo
():
String
{
if
(
tt
is
String
)
{
return
tt
}
return
""
}
}