Sign in
fuchsia
/
third_party
/
rust
/
refs/heads/main
/
.
/
tests
/
ui
/
error-codes
/
E0184.rs
blob: 64cc1f0d1538211665f6a87a0eff09a08a7fe2f7 [
file
] [
log
] [
blame
] [
edit
]
#[
derive
(
Copy
)]
struct
Foo
;
//~ ERROR E0184
impl
Drop
for
Foo
{
fn
drop
(&
mut
self
)
{
}
}
fn
main
()
{
}