2024-06-25 09:50:01 +00:00
|
|
|
//@ check-pass
|
2024-06-30 17:08:45 +00:00
|
|
|
//@ compile-flags: -Znext-solver
|
2024-10-30 18:03:44 +00:00
|
|
|
#![feature(const_trait_impl)]
|
2023-10-15 08:51:54 +00:00
|
|
|
|
2024-06-25 09:50:01 +00:00
|
|
|
#[const_trait]
|
|
|
|
|
pub trait Owo<X = <Self as Uwu>::T> {}
|
2023-10-15 08:51:54 +00:00
|
|
|
|
|
|
|
|
#[const_trait]
|
|
|
|
|
pub trait Uwu: Owo {
|
|
|
|
|
type T;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|