summaryrefslogtreecommitdiff
path: root/test/regression/casts1.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/regression/casts1.c')
-rw-r--r--test/regression/casts1.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/regression/casts1.c b/test/regression/casts1.c
new file mode 100644
index 0000000..3496222
--- /dev/null
+++ b/test/regression/casts1.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+
+int main(void)
+{
+ unsigned short p_69 = (signed char) (-1);
+ printf("%d\n", p_69);
+ return 0;
+}