Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / g++.dg / rtti / repo1.C
blob7ff813bcdfeb93ed3b2d090c7a1640c65c5b123a
1 // PR c++/22204
2 // { dg-options "-frepo" }
3 // { dg-require-host-local "" }
5 #include <typeinfo>
6 template<int>
7 struct function1
9   function1()
10   {
11     typeid(int[100]);
12   }
14 function1<1> b;
16 int main () {}
18 // { dg-final { cleanup-repo-files } }