Home
last modified time | relevance | path

Searched refs:csource (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/utilities/utility/forward/
H A Dforward.fail.cpp20 const A csource() {return A();} in csource() function
33 … 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()
H A Dforward.pass.cpp24 const A csource() TEST_NOEXCEPT {return A();} in csource() function
66 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()
H A Dmove.fail.cpp27 const move_only csource() {return move_only();} in csource() function
H A Dmove.pass.cpp29 const move_only csource() {return move_only();} in csource() function