Sign in
webkit
/
WebKit
/
0e4328c5b03a383f0100ef33ad31b474fc1d9cab
/
.
/
LayoutTests
/
fast
/
canvas
/
webgl
/
shaders
/
implicit
/
function_int_float.vert
blob: 14f0755ef89a343040956a8053c372ea00e7ce88 [
file
] [
log
] [
blame
]
// implicit cast of int to float in function argument should fail
float
foo
(
float
f
)
{
return
f
;
}
void
main
()
{
float
f
=
foo
(
1
);
}