Bug 1879449 [wpt PR 44489] - [wptrunner] Add `infrastructure/expected-fail/` test...
[gecko.git] / tools / clang-tidy / test / modernize-avoid-bind.cpp
blobc46fb31cd5261ae0d3cdcfb5798b74b463bbd90e
1 #include "structures.h"
3 int add(int x, int y) { return x + y; }
4 void f_bind() {
5 auto clj = std::bind(add, 2, 2);