blob: 8e5dee76dda3aaeaaacafb80047d2e89723d75a3 [file] [log] [blame]
// PR c++/29632
struct nullptr_type {
nullptr_type ( void ) {}
template < typename T >
operator T* ( void ) const {
return ( 0 );
}
} const nullptr;
int main ( void ) {
0 == nullptr; // { dg-error "match" }
}