694b314f87
Need to fake it by pretending it has one dummy member.
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;
|
|
}
|
|
|