OSDN Git Service

PR c++/53549
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / sizeof9.C
1 // PR c++/21025
2
3 template<int N> struct X { char x[N]; };
4 template<typename T> X<1 + sizeof(T) - sizeof(T)> F(T const &);
5 template<int N> struct S { int d() { F(1); } };
6