test: Fix unused variable warning in repeat-to-run-dtor-twice.rs.

Hopefully puts out burning tinderbox.
This commit is contained in:
Patrick Walton 2012-08-17 17:11:25 -07:00
parent 6b1a9af173
commit 0845579130

View File

@ -11,6 +11,6 @@ struct Foo {
fn main() {
let a = Foo { x: 3 };
let b = [ a, ..5 ]; //~ ERROR copying a noncopyable value
let _ = [ a, ..5 ]; //~ ERROR copying a noncopyable value
}