1namespace ns {
2  typedef int id;
3};
4
5int main()
6{
7  ns::id foo = 0;
8  return foo; // Set breakpoint here.
9}
10