blob: c6c407bf4851c6a4adaa0b466ebc130c2955fe4b [file] [log] [blame]
struct str {
int arr[4];
};
void func(inout int pointer[4]) {
const int tint_symbol[4] = (int[4])0;
pointer = tint_symbol;
}
static str P = (str)0;
[numthreads(1, 1, 1)]
void main() {
func(P.arr);
return;
}