fixes + dependency test

This commit is contained in:
ProgramSnail 2025-01-12 20:17:24 +03:00
parent 19c99bc7e5
commit 72ec1923e3
7 changed files with 46 additions and 17 deletions

2
byterun/regression/Dep.i Normal file
View file

@ -0,0 +1,2 @@
I,Std;
F,f;

View file

@ -0,0 +1 @@
public fun f(a, b) { a + b }

View file

@ -0,0 +1,3 @@
import Dep;
f(1, 2)