Sign in
skia
/
skia
/
7e33d95f4f881f7d304ea81db39d20be4dab4416
/
.
/
resources
/
sksl
/
errors
/
FloatRemainder.sksl
blob: fa77d2b664f9fd4303fc3ce50c231e2cb2eccb02 [
file
] [
log
] [
blame
]
// Expect 2 errors (one per function)
float
x
;
float
y
;
void
rem
()
{
x
=
x
%
y
;
}
void
rem_eq
()
{
x
%=
y
;
}