hanchenye-llvm-project/clang/test/CodeGenCXX/scoped-enums.cpp

18 lines
263 B
C++

// RUN: %clang_cc1 -std=c++11 -emit-llvm -o - %s
// PR9923
enum class Color { red, blue, green };
void f(Color);
void g() {
f(Color::red);
}
// See that struct is handled equally.
enum struct Colour { grey };
void h(Colour);
void i() {
h(Colour::grey);
}