comparison gcc/testsuite/g++.dg/template/repo10.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 // PR c++/51910
2 // { dg-options -frepo }
3 // { dg-require-host-local "" }
4 // { dg-skip-if "dkms are not final links" { vxworks_kernel } }
5 // { dg-final cleanup-repo-files }
6
7 template<typename T>
8 struct Foo
9 {
10 virtual ~Foo() { }
11 };
12
13 int main( int, char*[] )
14 {
15 Foo<int> test;
16 }