aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/lang/cpp/scope/main.cpp
blob: da5d7ed529d1f088a1187211d16ea5ce83863ee0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class A {
public:
    static int a;
    int b;
};

class B {
public:
    static int a;
    int b;
};

struct C {
    static int a;
};

int A::a = 1111;
int B::a = 2222;
int C::a = 3333;
int a = 4444;

int main() // break here
{
    return 0;
}