summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/scoped-enums.cpp
blob: d40ab365111651bb87759c2413f5d464a8b469d3 (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -std=c++0x -emit-llvm -o - %s

// PR9923
enum class Color { red, blue, green };

void f(Color);
void g() {
  f(Color::red);
}
OpenPOWER on IntegriCloud