Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
SafeCallNonNullReceiver2.kt
blob: 175c3f3fb71250ca7459b4f6ff7263fcd3aaf863 [
file
]
// FIR_IDENTICAL
// http://youtrack.jetbrains.net/issue/KT-418
fun ff
()
{
val i
:
Int
=
1
val a
:
Int
?
=
i
<!
UNNECESSARY_SAFE_CALL
!>?.<!>
plus
(
2
)
}