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
/
parse
/
comma1.C
blob
4983535a58779bf6c687afe7b3e2403487e382de
1
// PR c++/14278
2
// { dg-options "" }
3
4
struct X {
5
X (int p);
6
};
7
8
struct A {
9
A(X);
10
};
11
12
void *p_fun;
13
14
A a(X ((*(int (*)(int, int)) p_fun)(0, 0)));