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

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

void init();

private:
class Alpha _alpha;
};