summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type-alias-impl-trait/generic_duplicate_param_use8.rs
blob: 3a4b5047b41e2579000176014553849998c5c171 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![feature(type_alias_impl_trait)]

use std::fmt::Debug;

fn main() {}

type Two<T, U> = impl Debug;

fn two<T: Debug, U: Debug>(t: T, _: U) -> Two<T, U> {
    (t, 4u32)
    //~^ ERROR `T` doesn't implement `Debug`
}

fn three<T: Debug, U: Debug>(_: T, u: U) -> Two<T, U> {
    (u, 4u32)
    //~^ ERROR `U` doesn't implement `Debug`
}