aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/box-compare.rs
blob: 5115d5109a9da01b987b1940cacc72397dff7a78 (plain) (blame)
1
2
3
4
5
fn main() {
  check (@1 < @3);
  check (@@"hello " > @@"hello");
  check (@@@"hello" != @@@"there");
}