ref: 0bab8ee83c31cd1512c33b85a3825e1cd87c9b85
dir: /cc1/tests/test064.c/
/* See LICENSE file for copyright and license details. */ /* name: TEST064 description: Test function alike macro without parenthesis error: output: S1 " #N2 #N1 M2 I "f #N0 G5 I F "main { \ A6 S1 "s A6 M2 .I #I0 :I h A6 M2 .I } */ #define x f #define y() f typedef struct { int f; } S; int main() { S s; s.x = 0; return s.y(); }