aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/cpp/_Pragma7.c
blob: a7a5b1bcb0bf142727f031702f6da5ff7104a686 (plain)
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)
}