1#include <stdlib.h>
2
3struct instance
4{
5    unsigned myVal:1;
6};
7
8static struct instance* myInstance;
9
10int main(int argc, char** argv)
11{
12    float g = 1.0f;
13
14    myInstance = malloc(sizeof(struct instance));
15
16    myInstance->myVal = 1;
17
18    if (g == 1.0f)
19        return 0;
20    else
21        return 1;
22}
23