aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/main.cpp
blob: 6dd8cbc6e9fef6cb4ebd6a20d81b2eea3d723da1 (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace ns {
  typedef int id;
};

int main()
{
  ns::id foo = 0;
  return foo; // Set breakpoint here.
}