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