summaryrefslogtreecommitdiff
path: root/out.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2019-08-30 16:13:59 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2019-08-30 16:13:59 -0400
commit94e8da0bc35d80df12e2d1490b3aa751576095f6 (patch)
treeebeba71ab0a68b241319fb2a9e1e5854b36d386c /out.c
parent1929fee97726344c0e83d74258ff27d0488770f9 (diff)
Added tuple types
Diffstat (limited to 'out.c')
-rw-r--r--out.c19
1 files changed, 2 insertions, 17 deletions
diff --git a/out.c b/out.c
index 23b0282..ed273e4 100644
--- a/out.c
+++ b/out.c
@@ -1,24 +1,9 @@
#include "out.h"
/* toc */
-static void a___(void);
void main__(void) {
- void (*bar[3])(void) = {NULL};
- void (*foo)(void) = a___;
- ((bar[1])=foo);
- ((bar[2])=foo);
- ((bar[0])=foo);
- int64_t i = 0;
- void (*x)(void) = (bar[i]);
- x();
- (i=(i+1));
- (x=(bar[i]));
- x();
- (i=(i+1));
- (x=(bar[i]));
- x();
-}
-static void a___(void) {
+ float foo = 3; float bar = 3;
+ float abc = bar;
}
int main(void) {