rustc/tests/ui/traits/const-traits/project.rs
2025-02-17 11:14:05 +01:00

14 lines
198 B
Rust

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