llvm/lldb/test/API/lang/c/strings/main.c

int main()
{
  const char a[] = "abcde";
  const char *z = "vwxyz";

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