Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/func.bind_front/
H A Dbind_front.verify.cpp27 struct NotMoveConst struct
29 NotMoveConst(NotMoveConst &&) = delete;
30 NotMoveConst(NotMoveConst const&) = delete;
32 NotMoveConst(int) { } in NotMoveConst() argument
35 void testNotMoveConst(NotMoveConst) { } in testNotMoveConst() argument
47 …auto t = std::bind_front(testNotMoveConst, NotMoveConst(0)); // expected-error {{no matching funct… in main()