Files
Ink-Shader-Language/test/redeclared_variable.inx

5 lines
58 B
Plaintext

vertex main :: () {
x : float = 1.0;
x : float = 5.0;
}