blob: a87f14bc4d3ec590c6bfdb9531b9294aeeea3873 [file] [log] [blame]
extern "C" void abort();
int i;
int j = i++;
int main()
{
if (i != 1)
abort();
}