blob: 27cd3e3e99b635ef6234d9ba69a14e62d7623c98 [file] [log] [blame]
#include <stdlib.h>
struct instance
{
unsigned myVal:1;
};
static struct instance* myInstance;
int main(int argc, char** argv)
{
float g = 1.0f;
myInstance = malloc(sizeof(struct instance));
myInstance->myVal = 1;
if (g == 1.0f)
return 0;
}