summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00094-Issue_3457.c
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00094-Issue_3457.c')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00094-Issue_3457.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00094-Issue_3457.c b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00094-Issue_3457.c
new file mode 100644
index 00000000..c6096135
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00094-Issue_3457.c
@@ -0,0 +1,12 @@
+#define IS_UNSIGNED(t) \
+ _Generic((t), \
+ uint8_t: true, \
+ uint16_t: true, \
+ uint32_t: true, \
+ uint64_t: true, \
+ unsigned long long: true, \
+ int8_t: false, \
+ int16_t: false, \
+ int32_t: false, \
+ int64_t: false, \
+ signed long long: false)