mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
74e843c833
Stopped being used in CSS with
73d0f7c7b6
19 lines
304 B
Rust
19 lines
304 B
Rust
pub struct Foo<T> {
|
|
x: T,
|
|
}
|
|
|
|
pub trait Bar {
|
|
type Fuu;
|
|
|
|
fn foo(foo: Self::Fuu);
|
|
}
|
|
|
|
// @has doc_assoc_item/struct.Foo.html '//*[@class="impl"]' 'impl<T: Bar<Fuu = u32>> Foo<T>'
|
|
impl<T: Bar<Fuu = u32>> Foo<T> {
|
|
pub fn new(t: T) -> Foo<T> {
|
|
Foo {
|
|
x: t,
|
|
}
|
|
}
|
|
}
|