summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/cpp/Issue_3538.cpp
blob: b965cb12ebe8259baf3c7c6bdb4e0206a9d43354 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class Alpha {};

class Beta
{
public:
    Beta(class Alpha alpha) : _alpha(alpha) {}

    void init();

private:
    class Alpha _alpha;
};