2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 990519-1.c
blob9c116178230158aae4a5e11c084938e463e5fdef
1 typedef int gboolean;
3 typedef struct{
4 gboolean names : 1;
5 gboolean types : 1;
6 } ParamOptions;
8 int p_param(ParamOptions* o){
9 return o->types && o->names;