aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/abi/vague1.C
blob: 928d652b83652b713433aba851f563d56a1fea00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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" }
// { dg-final { scan-assembler-not "_ZN1AIiE1tE" } }

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
}