[clang] Fix implicit integer conversion for opaque enums declared in class templates...
[llvm-project.git] / lldb / test / API / commands / watchpoints / watchpoint_count / main.c
blobfc9a370e41f3164e718e4c0463477a77d260aa7c
1 #include <stdint.h>
2 #include <stdio.h>
4 int main() {
5 uint8_t x1 = 0;
6 uint16_t x2 = 0;
8 printf("patatino\n");
10 x1 += 1;
11 x2 += 2;
12 return 0;