6b3303e41c
tests/python-embedded-interpreter now only does a sanity test on lldb, plus checks that lldb rpm mas the correct dependency on python3-lldb std::vector test moved to tests/lldb-std-vector-prettyprint.
10 lines
138 B
C++
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;
|
|
}
|