ff44584b47
Bug: skia:11072 Change-Id: Ic24e40bfea5bf1d2d14c0f681632228a5ecc7104 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/342929 Commit-Queue: Brian Osman <brianosman@google.com> Reviewed-by: John Stiles <johnstiles@google.com> Auto-Submit: Brian Osman <brianosman@google.com>
8 lines
113 B
Plaintext
8 lines
113 B
Plaintext
// Expect 2 errors (one per function)
|
|
|
|
float x;
|
|
float y;
|
|
|
|
void rem() { x = x % y; }
|
|
void rem_eq() { x %= y; }
|