test data

This commit is contained in:
nora 2023-02-12 13:45:51 +01:00
parent 94a6a0e999
commit 5de9ea38ca
7 changed files with 85 additions and 14 deletions

12
test_data/calls_obj.c Normal file
View file

@ -0,0 +1,12 @@
#include <stdio.h>
int uwu()
{
return 1;
}
int main(int argc, char **argv)
{
printf("%d", uwu());
return 0;
}