xref: /llvm-project/lldb/test/API/functionalities/multiple-slides/main.c (revision 1fee25629d9d3f33cc618cb2b61cdf3823bfd092)
1 int first[2048] = { 5 };
2 int second[2048] = { 6 };
main()3 int main()  {
4   return first[0] + second[0];
5 }
6