blob: 4bedcd5b42465cd9f1c78285c692e03b0a0d301b [file] [log] [blame]
thughesd88f4152004-03-28 11:26:29 +00001#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;
nethercotefa39f382004-10-14 09:48:55 +000020 else
21 return 1;
thughesd88f4152004-03-28 11:26:29 +000022}