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

11 lines
304 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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)