19 lines
292 B
C
19 lines
292 B
C
/*typedef struct {
|
|
int i[41];
|
|
long double d;
|
|
} (*x)(void);
|
|
|
|
/* typedef enum X { */
|
|
/* R,S,T */
|
|
/* } *Foo[sizeof(unsigned long)]; */
|
|
/* typedef int A[T]; */
|
|
|
|
typedef struct A {
|
|
int x, y;
|
|
long double c;
|
|
unsigned long d;
|
|
char e[3];
|
|
long f;
|
|
} A;
|
|
|
|
typedef int x[(int)&((struct A*)0)->e];
|