blob: 1a24efc3b4ec659b2258dea09e93fda0a764612b [file] [log] [blame]
#version 310 es
struct str {
int i;
};
int func(inout int pointer) {
return pointer;
}
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
str F = str(0);
int r = func(F.i);
}