[lldb][NFC] Modernize lang/cpp/scope test

This commit is contained in:
Raphael Isemann
2020-04-06 09:02:49 +02:00
parent 5125685e91
commit acb0b99c8e
2 changed files with 21 additions and 85 deletions

View File

@@ -1,17 +1,17 @@
class A {
public:
static int a;
int b;
static int a;
int b;
};
class B {
public:
static int a;
int b;
static int a;
int b;
};
struct C {
static int a;
static int a;
};
int A::a = 1111;
@@ -21,5 +21,5 @@ int a = 4444;
int main() // break here
{
return 0;
return 0;
}