blob: 594174862908877446ecb89031c5185af4307146 [file] [log] [blame]
SKIP: FAILED
#include <metal_stdlib>
using namespace metal;
struct S {
int i;
};
thread S V = {};
kernel void tint_symbol() {
int const i = V.i;
}
program_source:7:10: error: program scope variable must reside in constant address space
thread S V = {};
^
program_source:9:13: warning: unused variable 'i' [-Wunused-variable]
int const i = V.i;
^