blob: bfca1f0cf8194493556e4f9fc1456f02b4e29246 [file] [log] [blame]
void tooBig(inout int x) {
++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x;
++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x;
}
void main() {
int x = 0;
tooBig(x);
tooBig(x);
}