repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr90194.C
blob
f0c3a77db8af062f3ae0e15a80497a115c25f585
1
// { dg-do compile }
2
// { dg-additional-options "-g" }
3
4
struct cb {
5
int yr;
6
};
7
8
void *
9
operator new (__SIZE_TYPE__, void *nq)
10
{
11
return nq;
12
}
13
14
void
15
af (int xn)
16
{
17
new (&xn) cb { };
18
}