PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / friend41.C
blob6d686019d9a2ab4c46669de93613a9068a8fc0c5
1 // PR c++/26912
3 struct Foo { 
4   template<class T> int func() const; 
5 }; 
7 class Bar { 
8   friend int Foo::func<int>() const;
9 };