PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / template27.C
blob8eee471ffb685a1f77700bcfcde98abe6fae8850
1 // PR c++/53563
3 template<class T>
4 struct s
6  template<class U>
7  s(){}
8 };
10 int main() {
11  struct s<void>::s<int> a;      // { dg-error "no match" }