blob: f21d8d9d07c9954836ce6c83d59a25ecca79810b [file] [log] [blame]
// 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" }
}