2017-09-30 00:17:51 +00:00
|
|
|
//@ ignore-cross-compile
|
|
|
|
|
2023-11-20 18:50:25 +00:00
|
|
|
// https://github.com/rust-lang/rust/issues/43893
|
|
|
|
|
2017-09-30 00:17:51 +00:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
pub trait SomeTrait {}
|
|
|
|
pub struct SomeStruct;
|
|
|
|
|
2023-11-20 18:59:29 +00:00
|
|
|
// @has foo/trait.SomeTrait.html '//a/@href' '../src/foo/src-links-implementor-43893.rs.html#11'
|
2017-10-02 13:54:35 +00:00
|
|
|
impl SomeTrait for usize {}
|
2017-09-30 00:17:51 +00:00
|
|
|
|
2023-11-20 18:59:29 +00:00
|
|
|
// @has foo/trait.SomeTrait.html '//a/@href' '../src/foo/src-links-implementor-43893.rs.html#14-16'
|
2017-09-30 00:17:51 +00:00
|
|
|
impl SomeTrait for SomeStruct {
|
2017-10-02 13:54:35 +00:00
|
|
|
// deliberately multi-line impl
|
2017-09-30 00:17:51 +00:00
|
|
|
}
|
2017-12-27 23:39:25 +00:00
|
|
|
|
|
|
|
pub trait AnotherTrait {}
|
|
|
|
|
2023-11-20 18:59:29 +00:00
|
|
|
// @has foo/trait.AnotherTrait.html '//a/@href' '../src/foo/src-links-implementor-43893.rs.html#21'
|
2017-12-27 23:39:25 +00:00
|
|
|
impl<T> AnotherTrait for T {}
|