d0c931ddc8b45c09e42191d79c079ae50bdc7040
[openbsd] /
1 //===-- main.cpp --------------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8
9 #include <functional>
10
11 int foo(int x, int y) {
12   return x + y - 1;
13 }
14
15 struct Bar {
16    int operator()() {
17        return 66 ;
18    }
19    int add_num(int i) const { return i + 3 ; }
20    int add_num2(int i) {
21      std::function<int (int)> add_num2_f = [](int x) {
22          return x+1;
23       };
24
25       return add_num2_f(i); // Set break point at this line.
26    }
27 } ;
28
29 int foo2() {
30    auto f = [](int x) {
31        return x+1;
32    };
33
34    std::function<int (int)> foo2_f = f;
35
36    return foo2_f(10); // Set break point at this line.
37 }
38
39 int main (int argc, char *argv[])
40 {
41   int acc = 42;
42   std::function<int (int,int)> f1 = foo;
43   std::function<int (int)> f2 = [acc,f1] (int x) -> int {
44     return x+f1(acc,x);
45   };
46
47   auto f = [](int x, int y) { return x + y; };
48   auto g = [](int x, int y) { return x * y; } ;
49   std::function<int (int,int)> f3 =  argc %2 ? f : g ;
50
51   Bar bar1 ;
52   std::function<int ()> f4( bar1 ) ;
53   std::function<int (const Bar&, int)> f5 = &Bar::add_num;
54
55   int foo2_result = foo2();
56   int bar_add_num2_result = bar1.add_num2(10);
57
58   return f1(acc,acc) + f2(acc) + f3(acc+1,acc+2) + f4() + f5(bar1, 10); // Set break point at this line.
59 }