summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/34360-nl_before_struct_struct.cpp
blob: 032a0dfcfb5c935a73dd923d3dcf12f9c163cf53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <string>


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


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

void baz( Foo*, Bar* );