We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version: wiz version 0.1.2 (alpha) Code to reproduce:
file1.wiz
import "file2"; namespace lib { in prg { func foo() { zoo(); // fail lib.zoo(); // success } } }
file2.wiz
import "file1"; namespace lib { in prg { func bar() { foo(); } func zoo() { } } }
Ran with wiz.exe src/file2.wiz -o out.bin
wiz.exe src/file2.wiz -o out.bin
Output:
file1.wiz:6: error: could not resolve identifier `zoo` * wiz: failed with 1 error(s).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version: wiz version 0.1.2 (alpha)
Code to reproduce:
file1.wiz
file2.wiz
Ran with
wiz.exe src/file2.wiz -o out.bin
Output:
The text was updated successfully, but these errors were encountered: