mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-02 19:06:05 +00:00
7 lines
165 B
Rust
7 lines
165 B
Rust
enum maybe_ordered_pair {
|
|
yes({low: int, high: int} : less_than(*.low, *.high)),
|
|
no
|
|
}
|
|
pure fn less_than(x: int, y: int) -> bool { ret x < y; }
|
|
fn main() { }
|