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