2017-09-29 19:17:51 -05:00
|
|
|
// ignore-cross-compile
|
|
|
|
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
pub trait SomeTrait {}
|
|
|
|
pub struct SomeStruct;
|
|
|
|
|
2018-12-25 09:56:47 -06:00
|
|
|
// @has foo/trait.SomeTrait.html '//a/@href' '../src/foo/issue-43893.rs.html#9'
|
2017-10-02 08:54:35 -05:00
|
|
|
impl SomeTrait for usize {}
|
2017-09-29 19:17:51 -05:00
|
|
|
|
2018-12-25 09:56:47 -06:00
|
|
|
// @has foo/trait.SomeTrait.html '//a/@href' '../src/foo/issue-43893.rs.html#12-14'
|
2017-09-29 19:17:51 -05:00
|
|
|
impl SomeTrait for SomeStruct {
|
2017-10-02 08:54:35 -05:00
|
|
|
// deliberately multi-line impl
|
2017-09-29 19:17:51 -05:00
|
|
|
}
|
2017-12-27 17:39:25 -06:00
|
|
|
|
|
|
|
pub trait AnotherTrait {}
|
|
|
|
|
2018-12-25 09:56:47 -06:00
|
|
|
// @has foo/trait.AnotherTrait.html '//a/@href' '../src/foo/issue-43893.rs.html#19'
|
2017-12-27 17:39:25 -06:00
|
|
|
impl<T> AnotherTrait for T {}
|