aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp23/explicit-obj-lambda3.C
blob: 9d222b0e547c99151bde9be32a5d04fbc021f924 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// P0847R7
// { dg-do run { target c++23 } }

// an adaptation of one of the examples in P0847R7

struct Leaf { };
struct Node;

struct Tree {
  enum class stored {leaf, node};
  stored _discriminator;
  union {
    Leaf _leaf;
    Node* _node;
  };
  Tree(Leaf) : _discriminator(stored::leaf), _leaf() {}
  Tree(Node& node) : _discriminator(stored::node), _node(&node) {}
};

struct Node {
    Tree left;
    Tree right;
};

template<typename Visitor>
auto visit_tree(Visitor&& visitor, Tree const& tree)
{
  switch (tree._discriminator)
  {
    case Tree::stored::leaf:
      return visitor (tree._leaf);
    case Tree::stored::node:
      return visitor (tree._node);
    default:
      __builtin_abort (); 
  }
}

template<typename... Ts>
struct overload : Ts... { using Ts::operator()...; };

int main()
{
  static constexpr int true_num_leaves = 8;
  Node branch0{.left = Leaf{}, .right = Leaf{}};
  Node branch1{.left = Leaf{}, .right = branch0};
  Node branch2{.left = Leaf{}, .right = Leaf{}};
  Node branch3{.left = branch1, .right = branch2};
  Node branch4{.left = branch3, .right = Leaf{}};
  Node branch5{.left = Leaf{}, .right = Leaf{}};
  Node branch6{.left = branch4, .right = branch5};

  Tree root (branch6);

  int num_leaves = visit_tree (overload{
    [](Leaf const&) { return 1; },
    [](this auto const& self, Node* n) -> int {
      return visit_tree (self, n->left) + visit_tree (self, n->right);
    }},
    root);
  if (num_leaves != true_num_leaves)
    __builtin_abort ();
}