1struct class {
2 int class;
3};
4
5int main() {
6 struct class constexpr;
7 constexpr.class = 3;
8 return constexpr.class; // break here
9}
10

source code of lldb/test/API/lang/cpp/struct_with_keyword_name/main.c