Sign in
rust
/
rust
/
c1d608bb7e862c8d8b74ce7cfc042fa98e9d4792
/
.
/
tests
/
ui
/
drop
/
explicit-drop-call-error.fixed
blob: 6060d64cebf11a4230dfb390830f215864315c14 [
file
]
//! Test error for explicit destructor method calls via UFCS
//@ run-rustfix
#![allow(dropping_references)]
struct
Foo
;
impl
Drop
for
Foo
{
fn drop
(&
mut
self
)
{}
}
fn main
()
{
drop
(
Foo
)
//~ ERROR explicit use of destructor method
}