|
From: Graeme P. <gp...@ms...> - 2015-03-19 12:33:11
|
This crashes mingw g++ (GCC) 4.8.1, hangs linux - with bigger array.
>g++ stringArray.cc
#include <string>
struct T {
std::string s[4065];
};
int main() {
T m = {"x", "y"};
}
|