mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 12:48:56 +00:00
7 lines
76 B
GLSL
7 lines
76 B
GLSL
struct S { int s; };
|
|
|
|
int main()
|
|
{
|
|
struct S t;
|
|
return t.s;
|
|
}
|