lldb/tests/python-embedded-interpreter/test.cpp
Tom Stellard cec2081e4c lldb should depend on python2-lldb
rhbz#1567262
2018-09-25 02:03:30 +00:00

10 lines
138 B
C++

#include <stdio.h>
#include <vector>
int
main ()
{
std::vector<int> v (1, 2);
std::vector<int>::iterator it(v.begin());
return 0;
}