Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
)
}
}