1 2 3 4 5 6 7 8 9 10 11 12
//DIAGNOSTIC_TEST:SIMPLE:-E #define A a #define B b // Correct output // "A B" // Old Slang output // # a b ; #define STRINGIFY(x) #x STRINGIFY(A B);