Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
noexcept60.C
blob: d8efe1a24cb49c840b09498787cf42e4fab7579d [
file
] [
log
] [
blame
]
// PR c++/95562
// { dg-do compile { target c++11 } }
template
<
bool
Nothrow
>
struct
Functions
{
void
(*
func
)(
void
*)
noexcept
(
Nothrow
);
};
void
test
()
{
Functions
<true>
f
{};
}