summary refs log tree commit diff
path: root/src/test/rustdoc/intra-link-extern-crate.rs
blob: bbe3edaea8cb23076448f580d3083a07be6c95af (plain)
1
2
3
4
5
6
7
8
9
// aux-build:intra-link-extern-crate.rs

// When loading `extern crate` statements, we would pull in their docs at the same time, even
// though they would never actually get displayed. This tripped intra-doc-link resolution failures,
// for items that aren't under our control, and not actually getting documented!

#![deny(intra_doc_link_resolution_failure)]

extern crate inner;