mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
9 lines
116 B
Rust
9 lines
116 B
Rust
struct Foo;
|
|
struct Bar;
|
|
|
|
impl Foo for Bar {} //~ ERROR E0404
|
|
|
|
fn main() {}
|
|
|
|
fn baz<T: Foo>(_: T) {} //~ ERROR E0404
|