Lines Matching refs:constexpr
20 friend constexpr int operator+(int, C) { return 4; }
50 // FIXME: PR12298: Recursive constexpr function template instantiation leads to
55 constexpr T f(T k) { return g(k); }
56 constexpr T g(T k) {
61 constexpr int x = A<int>().f(5);
65 template<typename T> constexpr T f(T);
66 template<typename T> constexpr T g(T t) {
70 template<typename T> constexpr T f(T t) {
79 template<typename T> constexpr T g(T t) {
82 template<typename T> constexpr T f(T t) {