OSDN Git Service

cp/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / rtti / repo1.C
1 // PR c++/22204
2 // { dg-options "-frepo" }
3
4 #include <typeinfo>
5 template<int>
6 struct function1
7 {
8   function1()
9   {
10     typeid(int[100]);
11   }
12 };
13 function1<1> b;
14
15 int main () {}
16
17 // { dg-final { cleanup-repo-files } }