Sign in
skia
/
skia
/
437cd4d85737039dd9719667905832982b843574
/
.
/
resources
/
sksl
/
errors
/
ArgumentMismatch.rts
blob: c11d451b582f665ccf3990a43b4bc2a3e42faa6e [
file
] [
log
] [
blame
]
float
foo
(
float
x
)
{
return
x
*
x
;
}
void
caller
()
{
float
x
=
foo
(
true
);
}
/*%%*
expected 'float', but found 'bool'
*%%*/