[clang] Fix implicit integer conversion for opaque enums declared in class templates...
[llvm-project.git] / lldb / test / API / commands / process / continue_to_bkpt / main.c
blobf179ebc48af967e82a2d6d6322072bcfa4867d30
1 #include <stdio.h>
3 int main (int argc, char const *argv[])
5 int pass_me = argc + 10; // Stop here to get started.
6 printf("This is the zeroth stop\n");
7 printf("This is the first stop\n");
8 printf("This is the second stop\n");
9 printf("This is the third stop\n");
10 printf("This is the fourth stop\n");
11 printf("This is the fifth stop\n");
12 printf("This is the sixth stop\n");
13 printf("This is the seventh stop\n");
14 printf("This is the eighth stop\n");
15 printf("This is the nineth stop\n");
17 return 0;