OSDN Git Service

2012-06-14 Richard Guenther <rguenther@suse.de>
[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];