]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/lang/cpp/scope/main.cpp
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / lang / cpp / scope / main.cpp
1 class A {
2 public:
3     static int a;
4     int b;
5 };
6
7 class B {
8 public:
9     static int a;
10     int b;
11 };
12
13 struct C {
14     static int a;
15 };
16
17 int A::a = 1111;
18 int B::a = 2222;
19 int C::a = 3333;
20 int a = 4444;
21
22 int main() // break here
23 {
24     return 0;
25 }