PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / friend39.C
blob9ebe226eb6fb1756e2f99a90cf367e49400e5602
1 // PR c++/8355
3 namespace Foo { template <typename T> void foo();}
4 struct Bar
6   friend void Foo::foo<int>();
7 };