mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
170 B
Rust
13 lines
170 B
Rust
// edition:2021
|
|
|
|
trait Foo<T> {}
|
|
|
|
impl<T> dyn Foo<T> {
|
|
fn hi(_x: T) {}
|
|
}
|
|
|
|
fn main() {
|
|
Foo::hi(123);
|
|
//~^ ERROR trait objects must include the `dyn` keyword
|
|
}
|