forked from mirrors/gecko-dev
MozReview-Commit-ID: IWxzKfWNIHG --HG-- extra : rebase_source : d2bd65c66541e5d6e8d5cc721b117f0a3e7716e8
6 lines
120 B
C++
6 lines
120 B
C++
#include "structures.h"
|
|
|
|
int add(int x, int y) { return x + y; }
|
|
void f_bind() {
|
|
auto clj = std::bind(add, 2, 2);
|
|
}
|