PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / nontype6.C
blob2da57b746293126786a4c2972886238b187cd2d9
1 // { dg-do compile }
2 // Origin: <v dot haisman at sh dot cvut dot cz>
3 // PR c++/13957: Improved error message for type in template (when non-type
4 //  is expected).
6 template <class T>
7 struct A
9   typedef int type;
12 template <class T>
13 void func(void)
15   (void)A<T>::type();    // { dg-error "non-type" "non-type" }
16 // { dg-message "if a type" "note" { target *-*-* } .-1 }
19 template void func<float>(void);    // { dg-message "required from here" }