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