OSDN Git Service

revert accidentally committed changes
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / attrib33.C
1 // PR c++/35546
2 // { dg-do compile }
3 // { dg-options "-g" }
4
5 template <int N>
6 struct T
7 {
8   void foo (char const * ...) __attribute__ ((format (printf,2,3)));
9 };
10
11 template struct T<3>;
12
13 template <typename T>
14 struct U
15 {
16   typedef T __attribute__((mode (SI))) V;
17 };
18
19 U<int>::V v;