Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
traits
/
issue-106072.rs
blob: 6b04004621d82c0315c2bbe0c87b45323752963e [
file
]
#[
derive
(
Clone
)]
//~ ERROR: expected a type, found a trait
struct
Foo
;
//~ ERROR: expected a type, found a trait
trait
Foo
{}
//~ ERROR: the name `Foo` is defined multiple times
fn
main
()
{}