blob: c51ce5256b65e60735a92bd712321ee5091a1a8e [file] [log] [blame]
struct S {
i : i32;
};
fn f() {
for(var i = 0; ; i = (i + S(1).i)) {
}
}