Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr62127.C
blob: fe5d439568392b9362d76a98826640afe278fb85 [
file
] [
log
] [
blame
]
// { dg-do compile }
// { dg-require-effective-target alloca }
struct
A
{
A
(
int
);
};
A
::
A
(
int
i
)
{
int
x
[
1
][
i
];
x
[
0
][
0
]
=
0
;
}