OSDN Git Service

* g++.dg/cdce3.C: Skip on alpha*-dec-osf5*.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / is_pod_incomplete.C
1 // PR c++/32158
2 template<typename T>
3   struct A
4   {
5     A() { }
6   };
7
8 int t[__is_pod(A<int>)?-1:1];