blob: 02708488de9527f1cacae4f580532cdbda2efcc2 [file] [log] [blame]
inline 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 y = 0;
tooBig(y);
tooBig(y);
}