summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/34299-align-assign-mixed.cpp
blob: ddae789b77616515ceb2a3d9369b7d37a5e0cd21 (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);
};