mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 08:54:13 +00:00
14 lines
120 B
GLSL
14 lines
120 B
GLSL
#version 450
|
|
|
|
struct Test
|
|
{
|
|
int empty_struct_member;
|
|
};
|
|
|
|
void main()
|
|
{
|
|
Test _14 = Test(0);
|
|
Test t = _14;
|
|
}
|
|
|