glslang/Test/hlsl.structStructName.frag

8 lines
76 B
GLSL
Raw Permalink Normal View History

struct S { int s; };
int main()
{
struct S t;
return t.s;
}