DEBSOURCES
Skip Quicknav
sources / emscripten / 2.0.12~dfsg-2 / tests / core / test_asan_vector.cpp
12345678
#include <vector> int main() { std::vector<int> v{0, 1}; v.reserve(4); int *p = &v[0]; return p[3]; }