blob: 358f9d2ed492ac0a708f8a3bcb958df5c5c7350c (
plain)
1
2
3
4
5
6
7
|
/* Test the the type of a component of a conditional expression between
two structures is correct. */
/* Origin: Joseph Myers <jsm28@cam.ac.uk>. */
struct s { char c; } a, b;
int c;
char x[sizeof ((c ? a : b).c) == 1 ? 1 : -1];
|