1 2 3 4 5 6 7 8 9 10 11 12 13
#define x f #define y() f typedef struct { int f; } S; int main() { S s; s.x = 0; return s.y(); }