[ create a new paste ] login | about

Link: http://codepad.org/N5YFd7zp    [ raw code | fork | 1 comment ]

apronchenkov - C++, pasted on Aug 5:
1
2
3
4
5
6
7
8
#include <vector>
#include <string>

int main() {
    std::vector< std::vector<std::string> > x(3, 3);

    return 0;
}


Output:
No errors or program output.


Create a new paste based on this one


Comments:
posted by apronchenkov on Aug 5
This code could not be compiled with the g++ (Ubuntu 4.4.1-4ubuntu9) 4.4.1.
reply