aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/init/array4.C
blob: 67519bf7c3517f296140e643fcc70908206b3781 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// { dg-do compile }
// Origin: Markus Breuer <markus.breuer@materna.de>

// PR c++/6944
// Fail to synthesize copy constructor of multi-dimensional
// array of class.

#include <string>

class Array
{
public:
   std::string m_array[10][20][30];
};

Array func()
{
   Array result;
   return result; // sorry, not implemented: cannot initialize multi-dimensional array with initializer
}


int main()
{
   Array arr = func();
}