1enum Foo {
2 Case1 = 1,
3 Case2 = 2,
4 Case45 = 45
5};
6
7int main() {
8 Foo f = Case45;
9 int x = 1;
10 int y = 45;
11 int z = 43;
12 return 1; // Set break point at this line.
13}
14

source code of lldb/test/API/functionalities/data-formatter/data-formatter-enum-format/main.cpp