From dff562c47c47fcac90c116782c92b692f2bb9bf9 Mon Sep 17 00:00:00 2001 From: Léo Gourdin Date: Thu, 22 Apr 2021 11:25:02 +0200 Subject: moving my tests --- test/gourdinl/c/if.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/gourdinl/c/if.c (limited to 'test/gourdinl/c/if.c') diff --git a/test/gourdinl/c/if.c b/test/gourdinl/c/if.c new file mode 100644 index 00000000..7d2e249a --- /dev/null +++ b/test/gourdinl/c/if.c @@ -0,0 +1,7 @@ +int main(int x) +{ + if (x > 27) + return 11; + else x--; + return x; +} -- cgit