blob: 8d65afc4883d7071237a08b8a3ce50f491143e1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// run-pass
static mut DROP_RAN: bool = false;
trait Bar {
fn do_something(&mut self);
}
struct BarImpl;
impl Bar for BarImpl {
fn do_something(&mut self) {}
}
struct Foo<B: Bar>(#[allow(unused_tuple_struct_fields)] B);
impl<B: Bar> Drop for Foo<B> {
fn drop(&mut self) {
unsafe {
DROP_RAN = true;
}
}
}
fn main() {
{
let _x: Foo<BarImpl> = Foo(BarImpl);
}
unsafe {
assert_eq!(DROP_RAN, true);
}
}
|