2018-10-23 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / expr / call1.C
blob42d18db563efcd207c4cca83cc1d6076c79a4e8c
1 namespace NS_1 {
2   struct A {};
3   struct foo {};
6 namespace NS_2 {
7   template <typename T> void foo(T);
8   
9   template <typename T>
10   void bar() {
11     NS_1::A a;
12     NS_2::foo(a);
13   }
15   template void bar<int>();