summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/oc/10021-double-indent-objc-dict.m
blob: a93bd81eacbb16e95bfcb2ad8edc51d4abdef523 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
id a = @{
	@"a": @1,
	@"b": @2,
};

struct foo_t b = {
	1,
	2,
};

SomeObject *build()
{
	return @{
		@"a": @1,
		@"b": @2,
	};
}