blob: 17378a1bc7be8296ea86b5b7ebf69539da3a3821 [file] [log] [blame]
SKIP: FAILED
#include <metal_stdlib>
using namespace metal;
struct main_out {
float4 gl_Position [[position]];
};
thread float4 gl_Position = 0.0f;
void main_1() {
gl_Position[1u] = 0.0f;
}
vertex main_out tint_symbol() {
main_1();
return {.gl_Position=gl_Position};
}
program_source:7:15: error: program scope variable must reside in constant address space
thread float4 gl_Position = 0.0f;
^