2023-10-16 18:12:17 -05:00
|
|
|
// https://github.com/rust-lang/rust/issues/33592
|
2016-05-12 12:23:11 -05:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
pub trait Foo<T> {}
|
|
|
|
|
|
|
|
pub struct Bar;
|
|
|
|
|
|
|
|
pub struct Baz;
|
|
|
|
|
2024-06-21 07:03:08 -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 {}
|
|
|
|
|
2024-06-21 07:03:08 -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 {}
|