2023-10-16 16:12:17 -07:00
|
|
|
// https://github.com/rust-lang/rust/issues/33592
|
2016-05-12 18:23:11 +01:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
pub trait Foo<T> {}
|
|
|
|
|
|
|
|
pub struct Bar;
|
|
|
|
|
|
|
|
pub struct Baz;
|
|
|
|
|
2024-06-21 14:03:08 +02:00
|
|
|
//@ has foo/trait.Foo.html '//h3[@class="code-header"]' 'impl Foo<i32> for Bar'
|
2016-05-12 18:23:11 +01:00
|
|
|
impl Foo<i32> for Bar {}
|
|
|
|
|
2024-06-21 14:03:08 +02:00
|
|
|
//@ has foo/trait.Foo.html '//h3[@class="code-header"]' 'impl<T> Foo<T> for Baz'
|
2016-05-12 18:23:11 +01:00
|
|
|
impl<T> Foo<T> for Baz {}
|