aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/abi/vague1.C
blob: 02feee9e2d4b5d8b3cb2fec858b0f672e4f22a31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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 <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
}