Searched refs:csource (Results 1 – 4 of 4) sorted by relevance
20 const A csource() {return A();} in csource() function33 … std::forward<A&>(csource()); // expected-error {{no matching function for call to 'forward'}} in main()40 std::forward<A>(csource()); // expected-error {{no matching function for call to 'forward'}} in main()
24 const A csource() TEST_NOEXCEPT {return A();} in csource() function66 static_assert(std::is_same<decltype(std::forward<const A>(csource())), const A&&>::value, ""); in main()69 ASSERT_NOEXCEPT(std::forward<const A>(csource())); in main()
27 const move_only csource() {return move_only();} in csource() function
29 const move_only csource() {return move_only();} in csource() function