Searched refs:NotMoveConst (Results 1 – 1 of 1) sorted by relevance
27 struct NotMoveConst struct29 NotMoveConst(NotMoveConst &&) = delete;30 NotMoveConst(NotMoveConst const&) = delete;32 NotMoveConst(int) { } in NotMoveConst() argument35 void testNotMoveConst(NotMoveConst) { } in testNotMoveConst() argument47 …auto t = std::bind_front(testNotMoveConst, NotMoveConst(0)); // expected-error {{no matching funct… in main()