URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [init/] [array4.C] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
// { 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();
}
Go to most recent revision | Compare with Previous | Blame | View Log