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