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
PR c++/28145
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
abi
/
local1-a.cc
blob
638479e7459c7ca5b125610fc2247cc2f7fff065
1
struct
B
{
2
virtual
void
b
() {}
3
};
4
5
static
B
*
f
() {
6
struct
D
:
public
B
{
7
};
8
9
return new
D
;
10
}
11
12
B
*
g
() {
13
return
f
();
14
}