2025-01-29 11:20:22 -07:00
|
|
|
// https://github.com/rust-lang/rust/issues/103463
|
2025-01-29 11:36:36 -07:00
|
|
|
//@ check-pass
|
2025-01-29 11:20:22 -07:00
|
|
|
|
2022-10-27 21:41:54 +04:00
|
|
|
// The `Trait` is not pulled into the crate resulting in doc links in its methods being resolved.
|
|
|
|
|
2024-02-22 12:10:29 +00:00
|
|
|
//@ aux-build:issue-103463-aux.rs
|
2022-10-27 21:41:54 +04:00
|
|
|
|
|
|
|
extern crate issue_103463_aux;
|
|
|
|
use issue_103463_aux::Trait;
|
|
|
|
|
|
|
|
fn main() {}
|