blob: ad7454918b4e50e04f4b634045821c94e2dac925 (
plain)
1
2
3
4
5
6
7
8
9
|
// aux-build:intra-doc-basic.rs
// build-aux-docs
#![deny(rustdoc::broken_intra_doc_links)]
// from https://github.com/rust-lang/rust/issues/65983
extern crate a;
// @has 'basic/struct.Bar.html' '//a[@href="../a/struct.Foo.html"]' 'Foo'
pub use a::Bar;
|