From-SVN: r23754
This commit is contained in:
Jason Merrill 1998-11-22 12:43:18 -05:00
parent e736f77a79
commit ff0236af5a
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
// Bug: expand_vec_init doesn't copy arrays of builtin types.
struct B {
B() { }
B(const B&) { }
};
struct A
{
B b;
int ar[5];
};
int main()
{
A a;
for (int i = 0; i < 5; ++i)
a.ar[i] = i;
A a2 = a;
for (int i = 0; i < 5; ++i)
if (a2.ar[i] != a.ar[i])
return 1;
}