summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/data-formatter/data-formatter-enum-format/main.cpp
blob: 6a8074ff9fbeea84d376fd5c3f721c51a3bb83a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
enum Foo {
	Case1 = 1,
	Case2 = 2,
	Case45 = 45
};

int main() {
	Foo f = Case45;
	int x = 1;
	int y = 45;
	int z = 43;
	return 1; // Set break point at this line.
}