1// PR c++/29518
2
3template< bool C > int assertion_failed( int);
4template< class >
5struct N
6{
7  static bool const okay = true;
8  enum {
9    t = sizeof( assertion_failed<okay>( 0))
10  };
11};
12int main()
13{
14  N<int> n;
15}
16