Sign in
rust
/
llvm-project
/
fe9269f804afce78827a11181e4b6a96007a0338
/
.
/
lldb
/
packages
/
Python
/
lldbsuite
/
test
/
expression_command
/
radar_43822994
/
main.cpp
blob: b0d67d23dc5e5206b898c1a0b38e36e5fa61f31b [
file
] [
log
] [
blame
]
enum
class
Foo
{
FooBar
=
42
};
enum
Bar
{
BarBar
=
3
,
BarBarBar
=
42
};
int
main
(
int
argc
,
const
char
**
argv
)
{
Foo
f
=
Foo
::
FooBar
;
Bar
b
=
BarBar
;
bool
b1
=
f
==
Foo
::
FooBar
;
bool
b2
=
b
==
BarBar
;
return
0
;
// Set break point at this line.
}