blob: b30d7743edfc4ac643fafc72eda024635bc01d40 [file] [log] [blame]
// check-pass
#![feature(const_trait_impl, effects)]
pub trait Owo<X = <Self as Uwu>::T> {}
#[const_trait]
pub trait Uwu: Owo {
type T;
}
fn main() {}