Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / crash37.C
blob0d837bd132d35e193d7367353792815405532dbe
1 // PR c++/21352
3 struct coperator_stack
5  template<class type>
6  void push3()
7  {
8  }
9 };
11 struct helper {};
13 template<class F>
14 void bla(F f) // { dg-error "candidates" }
18 template <typename ScannerT>
19 struct definition
21  definition()
22  {
23    bla(coperator_stack::push3<helper>); // { dg-error "" }
24  }