Add test with implemented bits of issue #570.

This commit is contained in:
Joshua Wise 2011-11-09 01:44:42 -08:00 committed by Brian Anderson
parent c8fae5dc75
commit ae2ce09267

View file

@ -0,0 +1,17 @@
// Issue #570
const lsl : int = 1 << 2;
const add : int = 1 + 2;
const addf : float = 1.0f + 2.0f;
const not : int = !0;
const notb : bool = !true;
const neg : int = -(1);
fn main() {
assert(lsl == 4);
assert(add == 3);
assert(addf == 3.0f);
assert(not == -1);
assert(notb == false);
assert(neg == -1);
}