struct IntDouble { int i; double j; };

int main(void) {
    for (struct IntDouble q = {0, 2}; q.i != q.j + 134; q.i++, q.j += 17) /* void */;
	return 0;
}
