2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20011106-2.c
blob358f9d2ed492ac0a708f8a3bcb958df5c5c7350c
1 /* Test the the type of a component of a conditional expression between
2 two structures is correct. */
3 /* Origin: Joseph Myers <jsm28@cam.ac.uk>. */
5 struct s { char c; } a, b;
6 int c;
7 char x[sizeof ((c ? a : b).c) == 1 ? 1 : -1];