1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Origin: PR preprocessor/53469 { dg-do compile } */ #define STRINGIFY(x) #x #define TEST(x) \ _Pragma(STRINGIFY(GCC diagnostic ignored "-Wunused-local-typedefs")) \ typedef int myint; void bar () { TEST(myint) }