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
/
lookup
/
new3.C
blob
36afb5b48e28b623954a9a1e76925dd99dd604a9
1
// PR c++/98249
2
3
#include <new>
4
struct Incomplete;
5
template<class T> struct Holder { T t; };
6
Holder<Incomplete> *p;
7
void test() {
8
::new (p) int;
9
new (p) int;
10
}