Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
4486c24db3ca1c698b34ea08bee15194774b53df
/
.
/
tests
/
ui
/
illegal-ufcs-drop.fixed
blob: 2b1c967ed1e070ca8e775c3ce76e39a64d4fbaf0 [
file
]
//@ run-rustfix
#![allow(dropping_references)]
struct
Foo
;
impl
Drop
for
Foo
{
fn drop
(&
mut
self
)
{}
}
fn main
()
{
drop
(&
mut
Foo
)
//~ ERROR explicit use of destructor method
}