Add test with implemented bits of issue #570.
This commit is contained in:
parent
c8fae5dc75
commit
ae2ce09267
17
src/test/run-pass/const-contents.rs
Normal file
17
src/test/run-pass/const-contents.rs
Normal 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);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user