Sign in
rust
/
rust
/
d7e8f9fc7af4aa4cd65140afaebe48dd1e90e708
/
.
/
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
()
{}