2019-03-06 10:57:38 -06:00
|
|
|
// aux-build:intra-links-external-traits.rs
|
|
|
|
// ignore-cross-compile
|
|
|
|
|
|
|
|
#![crate_name = "outer"]
|
2020-07-30 12:38:55 -05:00
|
|
|
#![deny(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;
|