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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
init
/
new8.C
blob
1fefc366ba80a8c45555bd25b1a59d7da10281e8
1
typedef __SIZE_TYPE__ size_t;
2
3
enum Refcount_Type {
4
NO_REFCOUNT
5
};
6
7
struct d0_Unknown_Object
8
{
9
void* operator new (size_t, size_t, Refcount_Type type);
10
void operator delete (void*, size_t, Refcount_Type);
11
d0_Unknown_Object ();
12
};
13
14
void make ()
15
{
16
new (10, NO_REFCOUNT) d0_Unknown_Object;
17
}