Merge pull request #77 from udalov/kt2212

test for KT-2212
This commit is contained in:
Nikolay Krasko
2012-06-15 09:37:48 -07:00
@@ -0,0 +1,8 @@
//KT-2212 Incomplete nullability information
package kt2212
fun main(args: Array<String>) {
val x: Int? = 1
if (x == null) return
println(x.plus(x<!UNNECESSARY_NOT_NULL_ASSERTION!>!!<!>))
}