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