1/* n_30.t:  Macro call. */
2/*  Note:   Comma separate the arguments of function-like macro call,
3        but comma between matching inner parenthesis doesn't.  This feature
4        is tested on so many places in this suite especially on *.c samples
5        which use assert() macro, that no separete item to test this feature
6        is provided.    */
7
8/* 30.1:    A macro call may cross the lines.   */
9#define FUNC( a, b, c)      a + b + c
10/*  a + b + c;  */
11    FUNC
12    (
13        a,
14        b,
15        c
16    )
17    ;
18
19