Create import test files

This commit is contained in:
Curle 2022-03-04 15:55:08 +00:00
parent 2c87817904
commit f2d2d07709
2 changed files with 7 additions and 0 deletions

1
tests/import/defs.eh Normal file
View File

@ -0,0 +1 @@
int :: printf(char* format);

6
tests/import/source.er Normal file
View File

@ -0,0 +1,6 @@
import "tests/import/defs.eh"
int :: main() {
printf("tests\n");
return (0);
}