rust/src/test/run-pass/multiple-trait-bounds.rs
2013-05-03 20:01:42 -04:00

7 lines
56 B
Rust

fn f<T:Eq + Ord>(_: T) {
}
pub fn main() {
f(3);
}