Merged r158704 through r158906 into branch.
[official-gcc.git] / gcc / testsuite / g++.dg / template / nontype6.C
blob97b093ae5517ec475e43b2697a17f29e506d07a8
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 *-*-* } 15 }
19 template void func<float>(void);    // { dg-message "instantiated from here" }