[fine] Tests to drive import work

This commit is contained in:
John Doty 2024-02-11 18:45:01 -08:00
parent aac5c6257f
commit 2093502031
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,3 @@
export fun hello() -> string {
"hello"
}

View file

@ -0,0 +1,8 @@
import "./foo" as foo;
fun test() -> string {
foo.hello() + " world"
}
// @ignore WIP
// @no-errors