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
602 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;
2023-11-20 18:59:29 +00:00
// @has foo/trait.SomeTrait.html '//a/@href' '../src/foo/src-links-implementor-43893.rs.html#11'
impl SomeTrait for usize {}
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'
impl SomeTrait for SomeStruct {
// deliberately multi-line impl
}
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'
impl<T> AnotherTrait for T {}