shithub: scc

ref: 60c8089ebc884a96d6a89c7388c579973d3e59fd
dir: /tests/execute/0150-define.c/

View raw version
/*
 * f(2) will expand to 2*g, which will expand to 2*f, and in this
 * moment f will not be expanded because the macro definition is
 * a function alike macro, and in this case there is no arguments.
 */
#define f(a) a*g
#define g f

int
main(void)
{
        int f = 0;

        return f(2);
}