11 lines
276 B
Plaintext
11 lines
276 B
Plaintext
|
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);
|
||
|
}
|