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