Sign in
skia
/
skia
/
437cd4d85737039dd9719667905832982b843574
/
.
/
resources
/
sksl
/
errors
/
ArgumentCountMismatch.rts
blob: d4aa858fbe4507731c7211fcf30f87ef761b393d [
file
] [
log
] [
blame
]
float
foo
(
float
x
)
{
return
x
*
x
;
}
void
caller
()
{
float
x
=
foo
(
1
,
2
);
}
/*%%*
call to 'foo' expected 1 argument, but found 2
*%%*/