We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcda573 commit 17913b9Copy full SHA for 17913b9
libcxx/test/std/utilities/function.objects/func.bind.partial/bind_back.pass.cpp
@@ -16,16 +16,13 @@
16
#include <functional>
17
18
#include <cassert>
19
+#include <concepts>
20
#include <tuple>
21
#include <utility>
22
23
#include "callable_types.h"
24
#include "types.h"
25
-template <class Fn, class... Args>
26
-concept back_bindable =
27
- requires(Fn&& fn, Args&&... args) { std::bind_back(std::forward<Fn>(fn), std::forward<Args>(args)...); };
28
-
29
constexpr void test_basic_bindings() {
30
{ // Bind arguments, call without arguments
31
{
0 commit comments