4 // { dg-options "-O2 -fexcess-precision=standard" }
11 t[1] / s; // { dg-error "invalid operands of types 'float' and 'const int\\\*' to binary 'operator/'" }
17 float t[2] = { 1, 2 };
18 int const *s[2] = { 0, 0 };
19 t[1] / s[0]; // { dg-error "invalid operands of types 'float' and 'const int\\\*' to binary 'operator/'" }
25 a -= b; // { dg-error "invalid operands of types 'float' and 'int\\\*' to binary 'operator-'" }