mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +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
|
|
}
|