Sign in
llvm
/
llvm-project
/
lldb
/
42b7a85e11c8017d38566b18e9635b75adfb4cb6
/
.
/
test
/
API
/
functionalities
/
data-formatter
/
callback-matching
/
main.cpp
blob: 7732d87342a93c07531b06837ec316fea5fc06cd [
file
] [
log
] [
blame
]
struct
Base
{
int
x
;
};
struct
Derived
:
public
Base
{
int
y
;
};
struct
NonDerived
{
int
z
;
};
int
main
()
{
Base
base
=
{
1111
};
Derived
derived
;
derived
.
x
=
2222
;
derived
.
y
=
3333
;
NonDerived
nd
=
{
4444
};
return
0
;
// Set break point at this line.
}