diff options
Diffstat (limited to 't/t7615/ours.c')
-rw-r--r-- | t/t7615/ours.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/t/t7615/ours.c b/t/t7615/ours.c new file mode 100644 index 0000000000..44d8251397 --- /dev/null +++ b/t/t7615/ours.c @@ -0,0 +1,17 @@ +int g(size_t u) +{ + while (u < 30) + { + u++; + } + return u; +} + +int h(int x, int y, int z) +{ + if (z == 0) + { + return x; + } + return y; +} |