blob: 3a71de300253efe1b9424c6f286dce2a712bc7a5 [file] [log] [blame]
struct S {
float field0;
float age;
};
static S myvar = (S)0;
void main_1() {
myvar.age = 42.0f;
return;
}
void main() {
main_1();
return;
}