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
/
init
/
ptrfn3.C
blob
960085063cf1b493d690386d4322548e22721848
1
// { dg-options "" }
2
// { dg-do compile }
3
// C++/30221
4
// We would ICE while trying to reshape the pointer to
5
// member function element which is not needed.
6
7
8
class abstract {};
9
typedef void (abstract::*fptr1) (short & s ) const;
10
struct s {fptr1 f;};
11
s array[] =
12
{
13
(fptr1)0
14
};