readd test

This commit is contained in:
Eh2406 2017-09-14 10:46:14 -04:00
parent 732dd2fd5f
commit b91bac2983

@ -12,11 +12,9 @@
// and that the for loop desugaring doesn't interfere with
// that.
// ignore-test
fn main() {
let mut sum = 0;
for i in Vec::new() {
sum += i;
sum += &i;
}
}