Add long-while.rs to check on frame growth.

This commit is contained in:
Graydon Hoare 2011-03-28 18:06:43 -07:00
parent 540d29f641
commit 268b2140dc

View file

@ -0,0 +1,8 @@
fn main() {
let int i = 0;
while (i < 1000000) {
i += 1;
auto x = 3;
}
}