Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
attrib54.C
blob: 5ff28c836efc30e03967d82ce5019c5acaba032f [
file
] [
log
] [
blame
]
// PR c++/82406
class
a
{
public
:
template
<
typename
b
>
void
operator
()
(
const
b
&);
};
void
c
()
throw
()
__attribute__
((
__nonnull__
));
void
d
()
{
a e
;
e
(
c
);
}