1#include <stdio.h>
2
3namespace abc {
4int g_file_global_int = 42;
5const int g_file_global_const_int = 1337;
6
7namespace {
8const int g_anon_namespace_const_int = 100;
9}
10}
11
12int main (int argc, char const *argv[])
13{
14 int unused = abc::g_file_global_const_int;
15 int unused2 = abc::g_anon_namespace_const_int;
16 return abc::g_file_global_int; // Set break point at this line.
17}
18

source code of lldb/test/API/lang/cpp/global_variables/main.cpp