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
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
new2.C
blob
682ca6e18620f06c4415e18257bcdbe0b0956468
1
// PR c++/21336
2
3
typedef __SIZE_TYPE__ size_t;
4
template<class _T> void* operator new( size_t Size, _T&);
5
struct B {
6
int a;
7
int* m() {
8
return new(a) int;
9
}
10
};
11
B* n() {
12
return new B();
13
}
14