We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7b9abf7 + 4ac9fa6 commit ec8cd6dCopy full SHA for ec8cd6d
tests/run-pass/drop_empty_slice.rs
@@ -1,9 +1,7 @@
1
#![feature(box_syntax)]
2
-// This disables the test completely:
3
-// ignore-stage1
4
5
fn main() {
6
- // With the nested Vec, this is calling Offset(Unique::empty(), 0).
+ // With the nested Vec, this is calling Offset(Unique::empty(), 0) on drop.
7
let args : Vec<Vec<i32>> = Vec::new();
8
- let local = box args;
+ let _ = box args;
9
}
0 commit comments