Files
rust/tests/ui/imports/pub-use-link-errors-9968.rs

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

13 lines
192 B
Rust
Raw Normal View History

2025-07-13 16:39:45 -04:00
// https://github.com/rust-lang/rust/issues/9968
//@ run-pass
//@ aux-build:aux-9968.rs
extern crate aux_9968 as lib;
use lib::{Trait, Struct};
pub fn main()
{
Struct::init().test();
}