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
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
ptrmem20.C
blob
dee3c629a70dc32cac17e5a98032c516b004fd9d
1
// PR c++/43079
2
3
struct A {};
4
5
struct B
6
{
7
void foo() const;
8
void foo();
9
};
10
11
template<void (A::*)()> void bar(); // { dg-message "note" }
12
13
void baz()
14
{
15
bar<&B::foo>(); // { dg-error "not a valid template argument|no match" }
16
// { dg-message "candidate" "candidate note" { target *-*-* } 15 }
17
}