blob: e2f3996927b7f8b93d850c779fd4fe83f78833cc [file] [log] [blame]
// run-pass
#![feature(trait_alias)]
mod alpha {
pub trait A {}
pub trait C = A;
}
#[allow(unused_imports)]
use alpha::C;
fn main() {}