aboutsummaryrefslogtreecommitdiffstats
path: root/test/testFuncs3.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test/testFuncs3.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/testFuncs3.c b/test/testFuncs3.c
new file mode 100644
index 0000000..ee0e2c4
--- /dev/null
+++ b/test/testFuncs3.c
@@ -0,0 +1,29 @@
+
+#include "testFuncs3.h"
+#include <complex.h>
+
+void tddfunc1 (void)
+{
+ double complex z1 = 10.0 + 10.0 * I;
+ double complex z2 = 1.0 - 4.0 * I;
+
+ float complex z3;
+
+ int complex iz1;
+ long int complex iz2;
+ unsigned int complex iz3;
+ signed int complex iz4;
+ signed int n1;
+ unsigned int n2;
+
+ z3 = z2;
+ z2 = z3;
+
+ iz1 = iz2;
+ iz2 = iz1;
+
+ iz3 = iz4;
+ iz2 = iz3;
+
+ n1 = n2;
+} \ No newline at end of file