aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/multiple-slides/main.c
blob: f9c8fd8ff931d60f9cdf1e6c1b491bff5be0f5d6 (plain)
1
2
3
4
5
int first[2048] = { 5 };
int second[2048] = { 6 };
int main()  {
  return first[0] + second[0];
}