blob: 24c5b7874907f6453207e4c0e3e980489f54edbe [file] [log] [blame]
// implicit cast of ivec4 to vec4 in function argument should fail
vec4 foo(vec4 f) {
return f;
}
void main() {
vec4 f = foo(ivec4(1, 2, 3, 4));
}