summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfcs/rfc-2632-const-trait-impl/effects/project.rs
blob: b30d7743edfc4ac643fafc72eda024635bc01d40 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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() {}