rust/tests/ui/issues/issue-26709.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
354 B
Rust
Raw Normal View History

// run-pass
struct Wrapper<'a, T: ?Sized>(&'a mut i32, #[allow(dead_code)] T);
impl<'a, T: ?Sized> Drop for Wrapper<'a, T> {
fn drop(&mut self) {
*self.0 = 432;
}
}
fn main() {
let mut x = 0;
{
let wrapper = Box::new(Wrapper(&mut x, 123));
2019-05-28 18:47:21 +00:00
let _: Box<Wrapper<dyn Send>> = wrapper;
}
assert_eq!(432, x)
}