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