rust/src/test/ui/repeat-to-run-dtor-twice.rs
2018-12-25 21:08:33 -07:00

20 lines
326 B
Rust

// Tests that one can't run a destructor twice with the repeated vector
// literal syntax.
struct Foo {
x: isize,
}
impl Drop for Foo {
fn drop(&mut self) {
println!("Goodbye!");
}
}
fn main() {
let a = Foo { x: 3 };
let _ = [ a; 5 ];
//~^ ERROR `Foo: std::marker::Copy` is not satisfied
}