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

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

10 lines
257 B
Rust
Raw Normal View History

2020-06-07 20:16:54 -05:00
//@ aux-build:intra-doc-basic.rs
//@ build-aux-docs
#![deny(rustdoc::broken_intra_doc_links)]
// from https://github.com/rust-lang/rust/issues/65983
2020-06-07 20:16:54 -05:00
extern crate a;
//@ has 'basic/struct.Bar.html' '//a[@href="../a/struct.Foo.html"]' 'Foo'
2020-06-07 20:16:54 -05:00
pub use a::Bar;