rustc/tests/ui/infinite/auxiliary/alias.rs
2024-11-29 22:33:13 +01:00

6 lines
80 B
Rust

pub struct W<T>(T);
pub type Wrapper<T> = W<T>;
pub trait Trait {
type T;
}