Files
Ink-Shader-Language/test/semant/wrong_multiply.golden
2024-06-09 21:34:23 +02:00

304 B

test/wrong_multiply.shd:4,34: error: Type mismatch. Expected float got float2
found:
result : float4 = float4(1.0, foo * res, 0.0, 1.0);
^
expected:
float
 
got:
res : float2 = float2(2.0, 2.0)