From 80a31d6c8a114799dc5284086ffce2e9be34c50e Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 6 May 2022 13:43:02 +0900 Subject: uncrustify-trinity: updated based on upstream version 0.75.0 Signed-off-by: Michele Calgaro --- .../tests/expected/oc/50074-blocks.m | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/oc/50074-blocks.m (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/oc/50074-blocks.m') diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/oc/50074-blocks.m b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/oc/50074-blocks.m new file mode 100644 index 00000000..467387b4 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/oc/50074-blocks.m @@ -0,0 +1,15 @@ +int *(^ blkReturningPointer)(int) = ^ int *(int a) { + return a + 1; +}; + +void (^ blk2)(int *) = ^ (int *b) { + *b = 1; +}; + + +int (^oneFrom)(int) = ^ (int anInt) { + return anInt - 1; +}; + +// this should not be flagged as OC_BLOCK_CARET +int x = 12 ^ 23; -- cgit v1.2.1