rust/tests/rustdoc/intra-doc/cross-crate/traits.rs

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

15 lines
398 B
Rust
Raw Normal View History

// aux-build:traits.rs
// build-aux-docs
#![deny(rustdoc::broken_intra_doc_links)]
extern crate inner;
use inner::SomeTrait;
pub struct SomeStruct;
// @has 'traits/struct.SomeStruct.html' '//a[@href="../inner/trait.SomeTrait.html"]' 'SomeTrait'
impl SomeTrait for SomeStruct {
// @has 'traits/struct.SomeStruct.html' '//a[@href="../inner/trait.SomeTrait.html"]' 'a trait'
fn foo() {}
}