PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / rtti / repo1.C
blobf72a9730ab994fa99c597e43b7fc1d57897b883c
1 // PR c++/22204
2 // { dg-options "-frepo" }
3 // { dg-require-host-local "" }
4 // { dg-skip-if "dkms are not final links" { vxworks_kernel } }
6 #include <typeinfo>
7 template<int>
8 struct function1
10   function1()
11   {
12     typeid(int[100]);
13   }
15 function1<1> b;
17 int main () {}
19 // { dg-final { cleanup-repo-files } }