* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr82725.C
blob14cb6d897c95b0fed2d28e92e1834019150c9dac
1 // { dg-do compile { target { { i?86-*-* x86_64-*-* } && c++11 } } }
2 // { dg-require-effective-target pie }
3 // { dg-options "-O2 -fpie -mtls-direct-seg-refs" }
5 struct string
7   __SIZE_TYPE__ length;
8   const char *ptr;
9 };
11 string
12 tempDir ()
14   thread_local string cache;
15   return cache;