aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2018-01-05 23:42:24 +0100
committertomsmeding <tom.smeding@gmail.com>2018-01-05 23:42:24 +0100
commit3272b5d83d2e2167eed24748557df88bd66584ee (patch)
tree6b8f1574f6d6a44e11b74903516286f6249cb0b7 /test
parenta298cb75c4f586b83b304c7dc66cb555693ea1b8 (diff)
There's actually a chance that, correctly stringified, this will work
Diffstat (limited to 'test')
-rw-r--r--test/t1.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/t1.c b/test/t1.c
index 33890fb..35a5312 100644
--- a/test/t1.c
+++ b/test/t1.c
@@ -14,8 +14,9 @@ int fibo(int n) {
return b;
}
-int main(int argc, int **argv) {
+void main(int argc, int **argv) {
int a = 1;
int b = 2 + a * 3;
+ fibo(5);
// holo_dec(a);
}