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