mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
14 lines
147 B
Rust
14 lines
147 B
Rust
// run-pass
|
|
|
|
#![feature(trait_alias)]
|
|
|
|
mod alpha {
|
|
pub trait A {}
|
|
pub trait C = A;
|
|
}
|
|
|
|
#[allow(unused_imports)]
|
|
use alpha::C;
|
|
|
|
fn main() {}
|