llvm-project/lldb/test/API/functionalities/multiple-slides/main.c

6 lines
98 B
C

int first[2048] = { 5 };
int second[2048] = { 6 };
int main() {
return first[0] + second[0];
}