rt_gccstream/gcc/testsuite/gcc.c-torture/compile/990519-1.c

11 lines
181 B
C

typedef int gboolean;
typedef struct{
gboolean names : 1;
gboolean types : 1;
} ParamOptions;
int p_param(ParamOptions* o){
return o->types && o->names;
}