about summary refs log tree commit diff
path: root/tests/rustdoc-ui/intra-doc/ice-priv-use-103463.rs
blob: 10894282e55b46c37674347bb62abb13711a8845 (plain)
1
2
3
4
5
6
7
8
9
10
11
// https://github.com/rust-lang/rust/issues/103463
//@ check-pass

// 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() {}