Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
InferNullabilityInThenBlock.kt
blob: 959407e6e1286749682181a5fc0b748123b8be37 [
file
]
fun ff
(
a
:
String
)
=
1
fun gg
()
{
val a
:
String
?
=
""
if
(
a
!=
null
)
{
ff
(<!
DEBUG_INFO_SMARTCAST
!>
a
<!>)
}
}