(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
error23.C
// 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" }
}