check wildcard compilation

This commit is contained in:
DieMyst 2021-09-09 15:45:53 +03:00
parent c9872cdc51
commit 4184a9ca35
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,5 @@
-- exports3.aqua
module Export3 declares *
func foo() -> string:
<- "I am MyFooBar foo"

View File

@ -0,0 +1,10 @@
-- imports3.aqua
module Import3 declares *
export foo_wrapper
use "export3.aqua"
func foo_wrapper() -> string:
z <- Export3.foo()
<- z