Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / rtti / repo1.C
blob54b52b397aaf3f031b4a6765d54ffd976697647c
1 // PR c++/22204
2 // { dg-options "-frepo" }
4 #include <typeinfo>
5 template<int>
6 struct function1
8   function1()
9   {
10     typeid(int[100]);
11   }
13 function1<1> b;
15 int main () {}
17 // { dg-final { cleanup-repo-files } }