blob: 13c0184a0397b559564a0a80bd9b68b81bf14c4c [file] [log] [blame]
struct str {
int i;
};
void func(inout str pointer) {
const str tint_symbol = (str)0;
pointer = tint_symbol;
}
[numthreads(1, 1, 1)]
void main() {
str F[4] = (str[4])0;
func(F[2]);
return;
}