Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / warn / noeffect6.C
blobca6baba812212e0da9e53ec9a8b23250544697df
1 // { dg-options "-Wall" }
2 // PR c++/15083
4 extern "C" int printf(const char*,...);
5 struct Counter {
6   Counter(){printf("Hello World.\n");}
7 };
8 template< typename T >
9 void resetData() {
10   new Counter();
12 int main() {
13   resetData<int>();
14