about summary refs log tree commit diff
path: root/src/test/rustdoc/intra-doc-crate/basic.rs
blob: 88b18ed539bd2b074950bb60605660dd91a64378 (plain)
1
2
3
4
5
6
7
8
9
// aux-build:intra-doc-basic.rs
// build-aux-docs
#![deny(intra_doc_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;