// { dg-do run }// Test that partial ordering works between conversion ops from different// classes.// From Jason Merrill <jason@cygnus.com>structA{template<classT>operatorT*(){return0;}};structB:publicA{template<classT>operatorT();};intmain(){Bb;(void*)b;}