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
* c-common.c (get_priority): Add check for
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
ptrmem7.C
blob
2e6b2db098daf31126319ebf51945297e9f8d737
1
// { dg-do assemble }
2
// Origin: Jason Merrill <jason@cygnus.com>
3
4
struct A {
5
int i;
6
};
7
8
template<const int A::* P>
9
struct B { };
10
11
int main()
12
{
13
B<&A::i> b;
14
}