blob: db20ef296fa91a422872ea04fdbb10a2c439fa0e (
plain)
1
2
3
4
5
6
7
8
9
|
// aux-build:intra-doc-basic.rs
// build-aux-docs
#![deny(intra_doc_link_resolution_failures)]
// 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;
|