mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 19:53:46 +00:00
26 lines
317 B
Rust
26 lines
317 B
Rust
trait bar<T> {
|
|
fn get_bar() -> T;
|
|
}
|
|
|
|
fn foo<T, U: bar<T>>(b: U) -> T {
|
|
b.get_bar()
|
|
}
|
|
|
|
struct cbar : bar<int> {
|
|
x: int,
|
|
fn get_bar() -> int {
|
|
self.x
|
|
}
|
|
}
|
|
|
|
fn cbar(x: int) -> cbar {
|
|
cbar {
|
|
x: x
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let x: int = foo::<int, cbar>(cbar(5));
|
|
assert x == 5;
|
|
}
|