1*99b7b41eSRaphael Isemann #include <vector>
2*99b7b41eSRaphael Isemann 
main(int argc,char ** argv)3*99b7b41eSRaphael Isemann int main(int argc, char **argv) {
4*99b7b41eSRaphael Isemann   // Makes sure we have the mock libc headers in the debug information.
5*99b7b41eSRaphael Isemann   libc_struct s;
6*99b7b41eSRaphael Isemann   std::vector<int> v;
7*99b7b41eSRaphael Isemann   return 0; // Set break point at this line.
8*99b7b41eSRaphael Isemann }
9