blob: d1bf64c0a628e2ec4bbcd6230da1f6b3b1f8df34 [file] [log] [blame]
// PR c++/36797
template <int> struct A { };
template <class T>
int foo (A<__is_empty (T)>* = 0); // { dg-error "built-in trait" }
int main ()
{
foo<int>();
}