Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
opt
/
nrv19.C
blob: 385593cc90c68385453875081405d528ca77b3aa [
file
] [
log
] [
blame
]
// PR c++/84978
// { dg-do compile }
struct
S
{
void
(*
fn
)();
int
a
[
10
];
};
S
foo
()
{
S s
;
s
.
fn
();
return
s
;
}