xref: /llvm-project/lldb/test/API/lang/c/global_variables/a.c (revision fdea9a4ec9b0d9585b8fe8a612686d9f44f40ddc)
1 int g_a = 123;
2 struct Point {
3     int x;
4     int y;
5 };
6 struct Point g_marked_spot = { 20, 21 };
7 
8