reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
// expected-no-diagnostics

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;
}