summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/oc/10021-double-indent-objc-dict.m
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/oc/10021-double-indent-objc-dict.m')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/oc/10021-double-indent-objc-dict.m17
1 files changed, 17 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/oc/10021-double-indent-objc-dict.m b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/oc/10021-double-indent-objc-dict.m
new file mode 100644
index 00000000..a93bd81e
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/oc/10021-double-indent-objc-dict.m
@@ -0,0 +1,17 @@
+id a = @{
+ @"a": @1,
+ @"b": @2,
+};
+
+struct foo_t b = {
+ 1,
+ 2,
+};
+
+SomeObject *build()
+{
+ return @{
+ @"a": @1,
+ @"b": @2,
+ };
+}