Searched defs:ConstexprType (Results 1 – 1 of 1) sorted by relevance
119 struct ConstexprType { struct120 enum CtorTypes {126 constexpr ConstexprType() : x(kCtorDefault) {} in ConstexprType() argument127 constexpr explicit ConstexprType(int i) : x(kCtorInt) {} in ConstexprType() function129 constexpr ConstexprType(std::initializer_list<int> il) in ConstexprType() function132 constexpr ConstexprType(const char*) // NOLINT(runtime/explicit) in ConstexprType() argument134 int x;