Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
traits
/
issue-106072.rs
blob: d45668312218bb8212f4e1a7e79ef9bae36ffbc0 [
file
] [
log
] [
blame
]
#[
derive
(
Clone
)]
//~^ ERROR expected a type, found a trait
//~| ERROR expected a type, found a trait
struct
Foo
;
trait
Foo
{}
//~ ERROR the name `Foo` is defined multiple times
fn
main
()
{}