aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/990519-1.c
blob: 9c116178230158aae4a5e11c084938e463e5fdef (plain)
1
2
3
4
5
6
7
8
9
10
  typedef int   gboolean;

  typedef struct{
    gboolean names : 1;
    gboolean types : 1;
  } ParamOptions;

  int p_param(ParamOptions* o){
    return o->types && o->names;
  }