blob: 4750591b2babec75871be6015e1ae702bc8b6f9e [file] [log] [blame]
//@ check-pass
//@ compile-flags: -Znext-solver
#![feature(const_trait_impl)]
pub const trait Owo<X = <Self as Uwu>::T> {}
pub const trait Uwu: Owo {
type T;
}
fn main() {}