rust/src/test/run-pass/box-compare.rs
2011-05-14 21:05:22 -04:00

5 lines
105 B
Rust

fn main() {
assert (@1 < @3);
assert (@@"hello " > @@"hello");
assert (@@@"hello" != @@@"there");
}