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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
abi
/
cookie1.C
blob
defc4887b5372e55c6d68241ec0c972393be0d65
1
// { dg-options "-fabi-version=0" }
2
3
void *operator new[](__SIZE_TYPE__, void *);
4
5
struct A {
6
~A(){}
7
};
8
9
int main()
10
{
11
A * a = (A*) new char[20];
12
A * b = new(a) A[3];
13
if (a != b)
14
return 1;
15
}