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