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