added tests for tilde and excl operators

This commit is contained in:
Sergey Ignatov
2011-12-06 14:04:16 +04:00
parent abaf31fba1
commit 3be18e69e2
4 changed files with 8 additions and 0 deletions
@@ -0,0 +1,2 @@
boolean i = true;
boolean j = !i;
@@ -0,0 +1,2 @@
var i : Boolean = true
var j : Boolean = (!i)
@@ -0,0 +1,2 @@
int i = 10;
int j = ~10;
@@ -0,0 +1,2 @@
var i : Int = 10
var j : Int = (10).inv()