Sign in
fuchsia
/
third_party
/
rust
/
90626979170da2d6c5ec1622b3d7a9512df9eb71
/
.
/
tests
/
ui
/
illegal-ufcs-drop.fixed
blob: 2b1c967ed1e070ca8e775c3ce76e39a64d4fbaf0 [
file
] [
log
] [
blame
]
//@ 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
}