First stab at !! operator

This commit is contained in:
Pavel Talanov
2012-05-24 15:55:00 +04:00
committed by Pavel V. Talanov
parent 296a5b6b6c
commit 0fc64bb6c2
4 changed files with 37 additions and 2 deletions
@@ -0,0 +1,8 @@
package foo
fun box() : Boolean {
val a : Int? = 0
return (a!! + 3) == 3
}