// Test that we don't emit unneeded copies of static data member template// instantiations.// Disable debug info so we don't get confused by the symbol name there.// { dg-options "-g0" }template<classT>structA{staticconstTt=0;};template<classT>constTA<T>::t;inti;intmain(){i=A<int>::t;// Should just use the value}