2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 950221-1.c
blob14147638668c1362ab2926b53bd4bb4fbdf5b9bf
1 short v = -1;
3 typedef struct
5 short network;
6 } atype;
8 void f ()
10 static atype config;
11 atype *cp;
12 short net;
13 cp = &config;
14 cp->network = (v == -1) ? 100 : v;
15 net = cp->network;