blob: 517a0049ce0b505eb013c2e2d65e427f2da9bb24 [file] [log] [blame]
// 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();
}