about summary refs log tree commit diff
path: root/tests/ui/coroutine/coroutine-in-orphaned-anon-const.rs
blob: c98ec1de17e39401bbf7fb229a52bc33aa7ef40e (plain)
1
2
3
4
5
6
7
8
//@ edition:2021

trait X {
    fn test() -> Self::Assoc<{ async {} }>;
    //~^ ERROR associated type `Assoc` not found for `Self`
}

pub fn main() {}