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
simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
ptrmem-cst-arg1.C
blob
38b3e24241c4aaa466d3c0c2ba41895d495ffdd3
1
// Origin PR c++/51476
2
// { dg-do compile { target c++11 } }
3
4
template<int> struct A {};
5
struct B
6
{
7
int i;
8
A<&B::i> a; // { dg-error "could not convert" }
9
};