summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/34297-align-assign-mixed.cpp
blob: d8082600c76c32772ec352884c0fca0149e10403 (plain)
1
2
3
4
5
6
7
8
9
10
11
class X16
{
X16()                        = delete;
public:
void z(int x                 = 0);
virtual void f(int x, int y) = 0;
int hhi = 9;
void g(int x                 = 0);
int i   = 9;
void x(int ggs               = 0);
};