rust/tests/ui/traits/issue-106072.rs

6 lines
217 B
Rust
Raw Normal View History

#[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() {}