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;
|
|
|
|
|
2018-12-25 15:56:47 +00:00
|
|
|
// @has foo/trait.SomeTrait.html '//a/@href' '../src/foo/issue-43893.rs.html#9'
|
2017-10-02 13:54:35 +00:00
|
|
|
impl SomeTrait for usize {}
|
2017-09-30 00:17:51 +00:00
|
|
|
|
2018-12-25 15:56:47 +00:00
|
|
|
// @has foo/trait.SomeTrait.html '//a/@href' '../src/foo/issue-43893.rs.html#12-14'
|
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 {}
|
|
|
|
|
2018-12-25 15:56:47 +00:00
|
|
|
// @has foo/trait.AnotherTrait.html '//a/@href' '../src/foo/issue-43893.rs.html#19'
|
2017-12-27 23:39:25 +00:00
|
|
|
impl<T> AnotherTrait for T {}
|