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:
parent
129564b24a
commit
6f2c019a64
|
@ -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() {}
|
||||
|
|
|
@ -11,3 +11,5 @@
|
|||
1
|
||||
1916
|
||||
1916
|
||||
64
|
||||
4
|
||||
|
|
Loading…
Reference in a new issue