rust/tests/run-pass/closure-drop.rs

26 lines
468 B
Rust
Raw Normal View History

2017-02-10 17:05:29 -06:00
struct Foo<'a>(&'a mut bool);
impl<'a> Drop for Foo<'a> {
fn drop(&mut self) {
*self.0 = true;
}
}
fn f<T: FnOnce()>(t: T) {
t()
}
fn main() {
let mut ran_drop = false;
{
let x = Foo(&mut ran_drop);
// this closure never by val uses its captures
// so it's basically a fn(&self)
// the shim used to not drop the `x`
2018-11-26 08:31:53 -06:00
let x = move || { let _val = x; };
f(x);
2017-02-10 17:05:29 -06:00
}
assert!(ran_drop);
}