repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
ptrmem24.C
blob
a4194109ef7f1c00d1ddd07cde4d9d05c13368e6
1
// PR c++/59818
2
3
template <class T>
4
struct Identity {
5
typedef T type;
6
};
7
8
struct Foo {
9
template <typename T>
10
Foo(T*, void (Identity<T>::type::*m)(void));
11
};
12
13
struct Bar {
14
void Method(void) const;
15
};
16
17
void Bar::Method(void) const
18
{
19
Foo foo(this, &Bar::Method); // { dg-error "no match" }
20
}