Blame test-t/u_1_28.t

Packit Service 8bf002
/* u_1_28.t:    Macro expanding to name identical to directive. */
Packit Service 8bf002
Packit Service 8bf002
#define D   define
Packit Service 8bf002
/* u.1.28:  There are following two ways of preprocessing.
Packit Service 8bf002
    1:  "D" isn't expanded, because # is the first token of the line.
Packit Service 8bf002
        Preprocessor reports that "D" is an unknown directive.
Packit Service 8bf002
    2:  "D" is expanded, because that is not a directive.
Packit Service 8bf002
        Compiler-phase will diagnose the output of preprocess.
Packit Service 8bf002
    Anyway, preprocessor should not interprete this line as a preprocessing
Packit Service 8bf002
    directive.
Packit Service 8bf002
 */
Packit Service 8bf002
#D  A   B
Packit Service 8bf002