Lines Matching refs:CT_LValue
34 assert(Fn::check_call<>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding()
36 assert(Fn::check_call<>(CT_Const | CT_LValue)); in test_call_operator_forwarding()
46 assert(Fn::check_call<int &>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding()
48 assert(Fn::check_call<int &>(CT_Const | CT_LValue)); in test_call_operator_forwarding()
58 assert(Fn::check_call<long &>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding()
60 assert(Fn::check_call<long &>(CT_Const | CT_LValue)); in test_call_operator_forwarding()
72 assert((Fn::check_call<long &, std::string &>(CT_NonConst | CT_LValue))); in test_call_operator_forwarding()
74 assert((Fn::check_call<long &, std::string &>(CT_Const | CT_LValue))); in test_call_operator_forwarding()
84 assert((Fn::check_call<long &, std::string &, int &, double &>(CT_NonConst | CT_LValue))); in test_call_operator_forwarding()
86 assert((Fn::check_call<long &, std::string &, int &, double &>(CT_Const | CT_LValue))); in test_call_operator_forwarding()
96 assert((Fn::check_call<long &, std::string &, int *&, double &>(CT_NonConst | CT_LValue))); in test_call_operator_forwarding()
98 assert((Fn::check_call<long &, std::string &, int *&, double &>(CT_Const | CT_LValue))); in test_call_operator_forwarding()
109 const auto Val = CT_LValue | CT_NonConst; in test_argument_forwarding()