xref: /aosp_15_r20/external/skia/resources/sksl/errors/FloatRemainder.rts (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1// Expect 2 errors (one per function)
2
3float x;
4float y;
5
6void rem()    { x = x % y; }
7void rem_eq() { x %= y; }
8
9/*%%*
10type mismatch: '%' cannot operate on 'float', 'float'
11type mismatch: '%=' cannot operate on 'float', 'float'
12*%%*/
13