mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
34 lines
481 B
Rust
34 lines
481 B
Rust
// 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);
|
|
}
|
|
}
|