* cfgloopmanip.c (duplicate_loop_to_header_edge): Cleanup profile
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / comdat2-aux.cc
blob283e4e092bd1e243862a5b029fd9e2141cf4b2ce
1 template <class T>
2 struct S {
3 static int f ()
5 static int i;
6 return ++i;
8 S () {};
9 ~S () {};
12 typedef S<int> a;
14 int g ()
16 return a::f();