struct b;
struct a
{
a( ) { }
a( b const& ) { }
};
struct b
{
operator a( ) const { return a( ); }
};
void f( a )
{
}
int main
(
)
{
b B;
f( B );
return 0;
}
_______________________________________________ help-gplusplus mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-gplusplus
