Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
is_nothrow_constructible6.C
blob: bdfdfb99de2b5db16116c37bde31a3187d0fee1c [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
// PR c++/81589
template
<
typename
k
>
struct
z
{
z
()
noexcept
{
k
::
error
;
}
};
int
x
=
__is_nothrow_constructible
(
z
<int>
);