OSDN Git Service

gcc/testsuite:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / repo4.C
1 // PR c++/17775
2 // { dg-options "-frepo" }
3 // { dg-final { cleanup-repo-files } }
4 // { dg-require-host-local "" }
5
6 namespace { 
7   struct Foo {}; 
8
9  
10 template <typename Tp> 
11 void foo(Tp) {} 
12  
13 int 
14 main() 
15
16   foo(Foo()); 
17