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
/
array6.C
blob
0dc5161b2b2c36a35ba4a81ef9a25a60e9117117
1
// PR c++/15287
2
3
struct S {};
4
5
struct Array {
6
S operator[](int);
7
} array;
8
9
void (S::*mem_fun_ptr)();
10
11
template <int> void foo() {
12
(array[0].*mem_fun_ptr)();
13
}