Lines Matching full:constexpr
52 constexpr A(int v) : v(v) { }
53 constexpr operator int() const { return v; }
58 constexpr int id(int x)
64 if (constexpr int i = id(101)) { }
65 switch (constexpr int i = id(2)) { default: break; case 2: break; }
66 for (; constexpr int i = id(0); ) { }
67 while (constexpr int i = id(0)) { }
69 if (constexpr A i = 101) { }
70 switch (constexpr A i = 2) { default: break; case 2: break; }
71 for (; constexpr A i = 0; ) { }
72 while (constexpr A i = 0) { }