2017-10-29 18:21:20 +00:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
2023-11-20 18:50:25 +00:00
|
|
|
// https://github.com/rust-lang/rust/issues/45584
|
|
|
|
|
2017-10-29 18:21:20 +00:00
|
|
|
pub trait Bar<T, U> {}
|
|
|
|
|
|
|
|
// @has 'foo/struct.Foo1.html'
|
|
|
|
pub struct Foo1;
|
2023-01-28 23:35:02 +00:00
|
|
|
// @count - '//*[@id="trait-implementations-list"]//*[@class="impl"]' 1
|
|
|
|
// @has - '//*[@class="impl"]' "impl Bar<Foo1, &'static Foo1> for Foo1"
|
2017-10-29 18:21:20 +00:00
|
|
|
impl Bar<Foo1, &'static Foo1> for Foo1 {}
|
|
|
|
|
|
|
|
// @has 'foo/struct.Foo2.html'
|
|
|
|
pub struct Foo2;
|
2023-01-28 23:35:02 +00:00
|
|
|
// @count - '//*[@id="trait-implementations-list"]//*[@class="impl"]' 1
|
|
|
|
// @has - '//*[@class="impl"]' "impl Bar<&'static Foo2, Foo2> for u8"
|
2017-10-29 18:21:20 +00:00
|
|
|
impl Bar<&'static Foo2, Foo2> for u8 {}
|