aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/c/strings/main.c
blob: 08d6efd33405f076c5651936720ffbed31ba9f51 (plain)
1
2
3
4
5
6
7
int main()
{
  const char a[] = "abcde";
  const char *z = "vwxyz";

  return *a + *z; // breakpoint 1
}