diff options
Diffstat (limited to 'src/test/run-pass-valgrind/dst-dtor-2.rs')
| -rw-r--r-- | src/test/run-pass-valgrind/dst-dtor-2.rs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/run-pass-valgrind/dst-dtor-2.rs b/src/test/run-pass-valgrind/dst-dtor-2.rs deleted file mode 100644 index 991fe00950b..00000000000 --- a/src/test/run-pass-valgrind/dst-dtor-2.rs +++ /dev/null @@ -1,21 +0,0 @@ -static mut DROP_RAN: isize = 0; - -struct Foo; -impl Drop for Foo { - fn drop(&mut self) { - unsafe { DROP_RAN += 1; } - } -} - -struct Fat<T: ?Sized> { - f: T -} - -pub fn main() { - { - let _x: Box<Fat<[Foo]>> = Box::<Fat<[Foo; 3]>>::new(Fat { f: [Foo, Foo, Foo] }); - } - unsafe { - assert_eq!(DROP_RAN, 3); - } -} |
