Blame test-t/n_30.t

Packit b40e2e
/* n_30.t:  Macro call. */
Packit b40e2e
/*  Note:   Comma separate the arguments of function-like macro call,
Packit b40e2e
        but comma between matching inner parenthesis doesn't.  This feature
Packit b40e2e
        is tested on so many places in this suite especially on *.c samples
Packit b40e2e
        which use assert() macro, that no separete item to test this feature
Packit b40e2e
        is provided.    */
Packit b40e2e
Packit b40e2e
/* 30.1:    A macro call may cross the lines.   */
Packit b40e2e
#define FUNC( a, b, c)      a + b + c
Packit b40e2e
/*  a + b + c;  */
Packit b40e2e
    FUNC
Packit b40e2e
    (
Packit b40e2e
        a,
Packit b40e2e
        b,
Packit b40e2e
        c
Packit b40e2e
    )
Packit b40e2e
    ;
Packit b40e2e