rust/src/test/run-pass/box-compare.rs

8 lines
118 B
Rust

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