summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30129-Issue_2890.cpp
blob: d03e4f62d38795af6f8954fe930536ab663646b4 (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
#include <iostream>
#include <sstream>
#include <string>

struct StringBuilder
{
        template <typename T>
        StringBuilder& append(const T& thing)
        {
                ss << thing;
                return *this;
        }
        std::string build()
        {
                return ss
                        .str();
        }
        std::stringstream ss;
};

int main()
{
        std::string my_____String = StringBuilder()
                .append(7)
                .append(" + ")
                .append(21)
                .append(" = ")
                .append(7 + 21)
                .build();
        std::string my_____String = StringBuilder()
                .append(7)
                .append(" + ")
                .append(21)
                .append(" = ")
                .append(7 + 21)
                .build();

        std::cout << my___String << std::endl;
}

void function()
{
        auto response = ResponseBuilder_1(1)
                .setStatus_1(status)
                .finish_1();

        ResponseBuilder_2(request)
                .setStatus_2(status)
                .finish_2();

        return ResponseBuilder_3(request)
                .setStatus_3(status)
                .finish_3();
}