aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/abi/vague1.C
blob: 83be514919ac08e05746e0cb478e07dcefd81e09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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" }
// The test fails on hppa*-*-hpux* because the symbol _ZN1AIiE1tE is imported.
// { dg-final { scan-assembler-not "_ZN1AIiE1tE" { xfail hppa*-*-hpux* } } }

template <class T> struct A {
  static const T t = 0;
};

template <class T> const T A<T>::t;

int i;
int main ()
{
  i = A<int>::t;		// Should just use the value
}