rust/tests/ui/traits/issue-106072.rs
2023-01-14 12:14:06 +00:00

6 lines
217 B
Rust

#[derive(Clone)] //~ trait objects must include the `dyn` keyword
//~| trait objects must include the `dyn` keyword
struct Foo;
trait Foo {} //~ the name `Foo` is defined multiple times
fn main() {}