PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / ext / is_empty2.C
blobd1bf64c0a628e2ec4bbcd6230da1f6b3b1f8df34
1 // PR c++/36797
3 template <int> struct A { };
5 template <class T>
6 int foo (A<__is_empty (T)>* = 0); // { dg-error "built-in trait" }
8 int main ()
10     foo<int>();