ultimatepp/upptst/PdbTests2/main.cpp
cxl 324a4e9659 .upptst
git-svn-id: svn://ultimatepp.org/upp/trunk@14198 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-03-29 11:42:16 +00:00

17 lines
310 B
C++

#include <Core/Core.h>
#include <string>
#include <vector>
#include <map>
#include <set>
#include <list>
#include <forward_list>
#include <deque>
#include <unordered_set>
#include <unordered_map>
using namespace Upp;
CONSOLE_APP_MAIN
{
Vector<Vector<int>> x { { 1, 2, 3 }, {}, { 4, 5 }};
}