// PR c++/29632
struct nullptr_type {
  nullptr_type ( void ) {}
  template < typename T >
  operator T* ( void ) const {
    return ( 0 );
  }
} const nullptr_ob;
int main ( void ) {
  0 == nullptr_ob; // { dg-error "match" }
}
// PR c++/29632
struct nullptr_type {
  nullptr_type ( void ) {}
  template < typename T >
  operator T* ( void ) const {
    return ( 0 );
  }
} const nullptr_ob;
int main ( void ) {
  0 == nullptr_ob; // { dg-error "match" }
}