Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/agroce/muttfuzz
Browse files Browse the repository at this point in the history
  • Loading branch information
agroce committed Aug 23, 2024
2 parents 1bb76c0 + 56129ca commit 34f6498
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions test/toy.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#include <assert.h>

int main() {
int a = 20;
if (a < 10) {
assert(0);
}

if (a > 100) {
assert(0);
}

if (a != 20) {
assert(0);
}
}

0 comments on commit 34f6498

Please sign in to comment.