PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / template-id-4.C
blob26f4809bc96c8948fc74990ad1e672268c141be8
1 // PR c++/48157
3 struct AType
5   template<class AA>
6   void SomeFuncTemplate()
7   { }
8 };
10 template < class T >
11 struct TTest2
13   template<T> struct helper;
15   template<class U>
16   static void check(helper<&U::template SomeFuncTemplate<int> > *);
19 int main()
21   TTest2< void (AType::*)() >::check<AType>(0);