blob: dfda4fe2e595b1ece8112587e387e324c6820ece [file] [log] [blame]
// PR c++/48936
template <bool C> int foo (void);
template <class T> struct S
{
static const unsigned int a = sizeof (T);
enum { c = sizeof (foo <(a == 0)> ()) };
};
S<int> x;