67046f993e
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/lldb#2dde36ca67a5249132a21f77da0b2b0ae26d4b27
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;
|
|
}
|