Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
illegal-ufcs-drop.rs
blob: 99dda0dab3406099a119bb61b31af4b9eb9ccd19 [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
#![
allow
(
dropping_references
)]
struct
Foo
;
impl
Drop
for
Foo
{
fn
drop
(&
mut
self
)
{}
}
fn
main
()
{
Drop
::
drop
(&
mut
Foo
)
//~ ERROR explicit use of destructor method
}