Blame test-t/e_31.t

Packit Service 8bf002
/* e_31.t:  Illegal macro calls.    */
Packit Service 8bf002
Packit Service 8bf002
#define sub( a, b)      (a - b)
Packit Service 8bf002
Packit Service 8bf002
/* 31.1:    Too many arguments error.   */
Packit Service 8bf002
    sub( x, y, z);
Packit Service 8bf002
Packit Service 8bf002
/* 31.2:    Too few arguments error.    */
Packit Service 8bf002
    sub( x);
Packit Service 8bf002