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
/
cpp0x
/
noexcept26.C
blob
7c8b4137b62fe130d068411ab5449381b57cdfc5
1
// PR c++/55443
2
// { dg-do compile { target c++11 } }
3
4
struct X
5
{
6
constexpr X() { }
7
8
void* operator new(__SIZE_TYPE__, void*) noexcept;
9
};
10
11
int main() { noexcept(new(0) X); }