[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Sema / enum-constant-type.cpp
blob5db3a859a39599ce44c10b9d4bcc5f84d01515b4
1 // RUN: %clang_cc1 -x c++ -fsyntax-only -verify %s -Wenum-compare
2 // expected-no-diagnostics
4 enum E1 {
5 E11 = 0
6 };
8 enum E2 {
9 E21 = 0,
10 E22 = E11,
11 E23 = E21 + E22