You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error: ParserError: Expected keyword "data" or "object" or "}".
--> input.yul:9:15:
|
9 | ds-test$DSTest$init()
| ^
thread 'main' panicked at 'Yul compilation failed with the above errors', crates/driver/src/lib.rs:219:13
note: run with RUST_BACKTRACE=1 environment variable to display a backtrace
How can it be fixed
Remove dash from file name. i.e. ds-test.fe -> dstest.fe
The text was updated successfully, but these errors were encountered:
Thanks for opening the issue.
This bug is fixed in Fe-v2 which disallows the - usage. In the new implementation, each use path segment is limited to an identifier, Self, or *(wildcard).
What is wrong?
Error: ParserError: Call or assignment expected. --> input.yul:9:15: | 9 | ds-test$DSTest$__init__() | ^Error: ParserError: Expected keyword "data" or "object" or "}".
--> input.yul:9:15:
|
9 | ds-test$DSTest$init()
| ^
thread 'main' panicked at 'Yul compilation failed with the above errors', crates/driver/src/lib.rs:219:13
note: run with
RUST_BACKTRACE=1
environment variable to display a backtraceHow can it be fixed
Remove dash from file name. i.e. ds-test.fe -> dstest.fe
The text was updated successfully, but these errors were encountered: