about summary refs log tree commit diff
path: root/src/test/rustdoc/intra-links-external-traits.rs
blob: de76f29476c66818f8268035716ea855fb9897e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// aux-build:intra-links-external-traits.rs
// ignore-cross-compile

#![crate_name = "outer"]
#![deny(broken_intra_doc_links)]

// using a trait that has intra-doc links on it from another crate (whether re-exporting or just
// implementing it) used to give spurious resolution failure warnings

extern crate intra_links_external_traits;

pub use intra_links_external_traits::ThisTrait;