1namespace ns {
2 typedef int id;
3};
4
5int bar() {
6 int id = 12;
7 int Class = 15;
8 return id + Class;
9}
10
11int main()
12{
13 ns::id foo = 0;
14 return foo + bar(); // Set breakpoint here.
15}
16

source code of lldb/test/API/lang/objcxx/objc-builtin-types/main.cpp