rust/tests/rustdoc-ui/intra-doc/ice-priv-use-103463.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
275 B
Rust
Raw Normal View History

2025-01-29 18:20:22 +00:00
// https://github.com/rust-lang/rust/issues/103463
//@ check-pass
2025-01-29 18:20:22 +00:00
// The `Trait` is not pulled into the crate resulting in doc links in its methods being resolved.
//@ aux-build:issue-103463-aux.rs
extern crate issue_103463_aux;
use issue_103463_aux::Trait;
fn main() {}