about summary refs log tree commit diff
path: root/tests/ui/traits/issue-56202.rs
blob: 7c12e4a493669c1162cec74dcc6048b10420efed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//@ build-pass

trait FooTrait {}

trait BarTrait {
    fn foo<T: FooTrait>(_: T) -> Self;
}

struct FooStruct(u32);

impl BarTrait for FooStruct {
    fn foo<T: FooTrait>(_: T) -> Self {
        Self(u32::default())
    }
}

fn main() {}