rust/tests/rustdoc/src-links-implementor-43893.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
552 B
Rust
Raw Normal View History

// ignore-cross-compile
2023-11-20 18:50:25 +00:00
// https://github.com/rust-lang/rust/issues/43893
#![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'
impl SomeTrait for usize {}
2018-12-25 15:56:47 +00:00
// @has foo/trait.SomeTrait.html '//a/@href' '../src/foo/issue-43893.rs.html#12-14'
impl SomeTrait for SomeStruct {
// deliberately multi-line impl
}
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'
impl<T> AnotherTrait for T {}