Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
nullabilityAndSmartCasts
/
equalityUnderNotNullCheck.kt
blob: e519e3f8db6943595365a95ab20a1be0e0a85184 [
file
]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
fun test
(
a
:
Any
?)
{
if
(
a
is
String
)
{
a
==
""
}
}
/* GENERATED_FIR_TAGS: equalityExpression, functionDeclaration, ifExpression, isExpression, nullableType, smartcast,
stringLiteral */