1struct EmptyStructTest
2{
3    int empty_struct_member;
4};
5
6float GetValue(EmptyStructTest self)
7{
8    return 0.0f;
9}
10
11float GetValue_1(EmptyStructTest self)
12{
13    return 0.0f;
14}
15
16void frag_main()
17{
18    EmptyStructTest _23 = { 0 };
19    EmptyStructTest emptyStruct;
20    float value = GetValue(emptyStruct);
21    value = GetValue_1(_23);
22}
23
24void main()
25{
26    frag_main();
27}
28