about summary refs log tree commit diff
path: root/tests/ui/cross-crate/reexported-structs-impls-link-error-9906.rs
blob: b49951bd1f9840ab5e5f15490021805e0101c1da (plain)
1
2
3
4
5
6
7
8
9
10
// https://github.com/rust-lang/rust/issues/9906
//@ run-pass
//@ aux-build:aux-9906.rs

extern crate aux_9906 as testmod;

pub fn main() {
    testmod::foo();
    testmod::FooBar::new(1);
}