rust/src/test/ui/issues/issue-56202.rs

18 lines
275 B
Rust
Raw Normal View History

// build-pass (FIXME(62277): could be check-pass?)
2018-11-24 19:12:28 -06:00
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() {}