summaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/expression/vector_of_enums/main.cpp
blob: 10d3ae569a5ff97eea1f82aad8522b7ddd2aae5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <vector>

enum E {
a,
b,
c,
d
} ;

int main() {
  std::vector<E> v = {E::a, E::b, E::c};

  return v.size(); // break here
}