rust/src/test/rustdoc/intra-links-external-traits.rs

13 lines
394 B
Rust
Raw Normal View History

// aux-build:intra-links-external-traits.rs
// ignore-cross-compile
#![crate_name = "outer"]
#![deny(intra_doc_resolution_failures)]
// 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;