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
PR c++/86728 - C variadic generic lambda.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
noexcept27.C
blob
c44902d862aa74151632d11003f0d9225bdcc165
1
// PR c++/55443
2
// { dg-do compile { target c++11 } }
3
4
struct X
5
{
6
X() = default;
7
8
X(int);
9
10
void* operator new(__SIZE_TYPE__, void*) noexcept;
11
};
12
13
X x;
14
15
bool b = noexcept(new(0) X);