summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/cpp/nl_before_struct_struct.cpp
blob: edac027cc3b24de594ebb0b3ab1f27cdc0dec53c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <string>

struct Foo
{
   std::string name;
   int value;
};

struct Bar
{
   Foo* parent;
   int modifier;
};

void baz( Foo*, Bar* );