mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 22:09:53 +00:00
18 lines
239 B
Rust
18 lines
239 B
Rust
//@ 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() {}
|