index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
ui
/
traits
/
bound
/
multiple.rs
blob: 30f229b285aaaf62c9ebb1a36b181e7506918313 (
plain
)
1
2
3
4
5
6
7
8
//@ run-pass
fn
f
<
T
:
PartialEq
+
PartialOrd
>
(
_
:
T
)
{
}
pub
fn
main
()
{
f
(
3
);
}