mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 20:35:53 +00:00
13 lines
157 B
Rust
13 lines
157 B
Rust
//@ edition:2021
|
|
|
|
trait Foo<T> {}
|
|
|
|
impl<T> dyn Foo<T> {
|
|
fn hi(_x: T) {}
|
|
}
|
|
|
|
fn main() {
|
|
Foo::hi(123);
|
|
//~^ ERROR expected a type, found a trait
|
|
}
|