summary refs log tree commit diff
path: root/src/test/run-pass/box-compare.rs
blob: 5cfb4e0009ea6edbee650ba7afe10d510394ba6d (plain)
1
2
3
4
5
6
7


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