2019-03-06 10:57:38 -06:00
|
|
|
// aux-build:intra-links-external-traits.rs
|
|
|
|
// ignore-cross-compile
|
|
|
|
|
|
|
|
#![crate_name = "outer"]
|
2021-11-26 17:03:16 -06:00
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
2019-03-06 10:57:38 -06:00
|
|
|
|
|
|
|
// 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;
|