unplugged-vendor/external/skia/resources/sksl/errors/FloatRemainder.sksl

8 lines
113 B
Plaintext
Raw Normal View History

// Expect 2 errors (one per function)
float x;
float y;
void rem() { x = x % y; }
void rem_eq() { x %= y; }