2016-05-12 12:23:11 -05:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
pub trait Foo<T> {}
|
|
|
|
|
|
|
|
pub struct Bar;
|
|
|
|
|
|
|
|
pub struct Baz;
|
|
|
|
|
2022-09-25 15:52:26 -05:00
|
|
|
// @has foo/trait.Foo.html '//h3[@class="code-header"]' 'impl Foo<i32> for Bar'
|
2016-05-12 12:23:11 -05:00
|
|
|
impl Foo<i32> for Bar {}
|
|
|
|
|
2022-09-25 15:52:26 -05:00
|
|
|
// @has foo/trait.Foo.html '//h3[@class="code-header"]' 'impl<T> Foo<T> for Baz'
|
2016-05-12 12:23:11 -05:00
|
|
|
impl<T> Foo<T> for Baz {}
|