about summary refs log tree commit diff
path: root/tests/ui/imports/pub-use-link-errors-9968.rs
blob: 517a0049ce0b505eb013c2e2d65e427f2da9bb24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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();
}