repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash37.C
blob
0d837bd132d35e193d7367353792815405532dbe
1
// PR c++/21352
2
3
struct coperator_stack
4
{
5
template<class type>
6
void push3()
7
{
8
}
9
};
10
11
struct helper {};
12
13
template<class F>
14
void bla(F f) // { dg-error "candidates" }
15
{
16
}
17
18
template <typename ScannerT>
19
struct definition
20
{
21
definition()
22
{
23
bla(coperator_stack::push3<helper>); // { dg-error "" }
24
}
25
};
26