1 // Test that we don't emit unneeded copies of static data member template
4 // Disable debug info so we don't get confused by the symbol name there.
5 // { dg-options "-g0" }
6 // The test fails on hppa*-*-hpux* because the symbol _ZN1AIiE1tE is imported.
7 // { dg-final { scan-assembler-not "_ZN1AIiE1tE" { xfail hppa*-*-hpux* } } }
9 template <class T> struct A {
13 template <class T> const T A<T>::t;
18 i = A<int>::t; // Should just use the value