summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/crash37.C
blob: 60724231eabbbaf324a1faaec3444a515ac32751 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// PR c++/21352

struct coperator_stack
{
 template<class type>
 void push3()
 {
 }
};

struct helper {};

template<class F>
void bla(F f) // { dg-message "bla|no known conversion" }
{
}

template <typename ScannerT>
struct definition
{
 definition()
 {
   bla(coperator_stack::push3<helper>); // { dg-error "matching" }
   // { dg-message "candidate" "candidate note" { target *-*-* } 23 }
 }
};