Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
noexcept12.C
blob: 185364b0f8b2b6fcd7fb2a88d758d22032d0c92a [
file
] [
log
] [
blame
]
// Test that we handle merging with deferred noexcept.
// { dg-do compile { target c++11 } }
template
<
class
U
>
struct
O
{
template
<
class
T
>
void
f
()
noexcept
(
noexcept
(
T
()));
};
template
<>
template
<>
void
O
<int>
::
f
<int>
()
noexcept
{
}