diff options
Diffstat (limited to 't/t7615/theirs.c')
-rw-r--r-- | t/t7615/theirs.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/t/t7615/theirs.c b/t/t7615/theirs.c new file mode 100644 index 0000000000..85f02146fe --- /dev/null +++ b/t/t7615/theirs.c @@ -0,0 +1,17 @@ +int f(int x, int y) +{ + if (x == 0) + { + return y; + } + return x; +} + +int g(size_t u) +{ + while (u > 34) + { + u--; + } + return u; +} |