xref: /llvm-project/lldb/test/API/lang/cpp/struct_with_keyword_name/main.c (revision a8350ce79d167643b53d06e2167535d24fe68dc3)
1 struct class {
2   int class;
3 };
4 
main()5 int main() {
6   struct class constexpr;
7   constexpr.class = 3;
8   return constexpr.class; // break here
9 }
10