(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
warn/
Wunused-var30.C
// PR c++/83942
// { dg-do compile { target c++11 } }
// { dg-additional-options "-Wall" }

enum class E { E1 };
int main() {
    E const e = E::E1;
    return static_cast<int>(e);
}