blob: 9fae91181d5be69f9fa9fd457887a21b7c4a3841 [file] [log] [blame]
/* Verify that we do not lose side effects on a MOD expression. */
#include <stdlib.h>
#include <stdio.h>
int
foo (int a)
{
int x = 0 % a++;
return a;
}
main()
{
if (foo (9) != 10)
abort ();
exit (0);
}