1// Expect 2 errors (one per function)
2
3float x;
4float y;
5
6void rem()    { x = x % y; }
7void rem_eq() { x %= y; }
8