blob: e8bc0095215c8cf70e98fb98c2bed1f835a0e62b [file] [log] [blame]
struct str {
int i;
};
static str P = (str)0;
int func(inout int pointer) {
return pointer;
}
[numthreads(1, 1, 1)]
void main() {
int r = func(P.i);
}