OSDN Git Service

* toplev.c (wrapup_global_declarations): Clarify variable handling.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / abi / vague1.C
1 // Test that we don't emit unneeded copies of static data member template
2 // instantiations.
3
4 // Disable debug info so we don't get confused by the symbol name there.
5 // { dg-options "-g0" }
6 // { dg-final { scan-assembler-not "_ZN1AIiE1tE" } }
7
8 template <class T> struct A {
9   static const T t = 0;
10 };
11
12 template <class T> const T A<T>::t;
13
14 int i;
15 int main ()
16 {
17   i = A<int>::t;                // Should just use the value
18 }