Fix typo in test case
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / static13.C
blob4ebffa6369c3284de876f73bc91efe0effdd9033
1 // Build don't run:
2 // Origin: scott snyder <snyder@fnal.gov>
4 struct Cleaner
6   ~Cleaner() {}
7 };
9 template <class T>
10 void bar ()
12   static Cleaner cleanup;
16 inline
17 void foo() { bar<int>(); }
19 int main () {}