Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
nullabilityAndSmartCasts
/
kt2212.fir.kt
blob: b4ebeb2fc3e73ace49ae0e0d0dc8dcd936c8dd8a [
file
]
//KT-2212 Incomplete nullability information
package
kt2212
fun main
()
{
val x
:
Int
?
=
1
if
(
x
==
null
)
return
System
.
out
.
println
(
x
.
plus
(
x
<!
UNNECESSARY_NOT_NULL_ASSERTION
!>!!<!>))
}