//PR c++/11070// Used to ICE// Origin: bangerth@dealii.org and rwgk@yahoo.comtemplate<boolb>structX{template<typenameT>staticint*execute(int*x){returnx;}};template<typenameT>voidfoo(){staticboolconstsame=true;X<same>::execute<int>(0);}templatevoidfoo<int>();