OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / nontype13.C
1 // PR c++/19004
2
3 template<typename T>
4 struct Dummy
5 {
6   void evil()
7   {
8     this->template tester<true>();
9   }
10       
11   template<bool B>
12   void tester()
13   {
14     bar<evil>()(); // { dg-error "constant" }
15   }
16   template<bool B>
17   struct bar
18   {
19     void operator()()
20     { }
21   };
22 };
23
24 int main()
25 {
26   Dummy<int> d;
27   d.tester<true> (); // { dg-message "instantiated" }
28 }
29