1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
16 lines
287 B
C++
16 lines
287 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
|
|
|
|
enum class Color { Red, Green, Blue };
|
|
|
|
struct ConvertsToColorA {
|
|
operator Color();
|
|
};
|
|
|
|
struct ConvertsToColorB {
|
|
operator Color();
|
|
};
|
|
|
|
Color foo(bool cond, ConvertsToColorA ca, ConvertsToColorB cb) {
|
|
return cond? ca : cb;
|
|
}
|