Added tests for left and right shift operators - issue #114.

git-svn-id: http://picoc.googlecode.com/svn/trunk@485 21eae674-98b7-11dd-bd71-f92a316d2d60
This commit is contained in:
zik.saleeba 2011-01-06 19:42:07 +00:00
parent 129564b24a
commit 6f2c019a64
2 changed files with 4 additions and 1 deletions

View file

@ -32,6 +32,7 @@ printf("%d, %d\n", a != a, a != b);
printf("%d\n", a != b && c != d);
printf("%d\n", a + b * c / f);
printf("%d\n", a + b * c / f);
printf("%d\n", (4 << 4));
printf("%d\n", (64 >> 4));
void main() {}

View file

@ -11,3 +11,5 @@
1
1916
1916
64
4