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
Note, that non-asm functions compile in FunC just fine, so the following modification of the asm function above into the global function will produce true:
And dropping unused values doesn't interfere here, see:
funtestMl(structure: TestMultiLong): TestMultiLong {
returnstructure;
}
// and modify the call to `testMl()`, adding the following after its `)`:// .f1.f1 → which dumps `false` to the debug console
The text was updated successfully, but these errors were encountered:
Something like this won't pass FunC compilation step, and the user will see an error message from FunC, not Tact:
Note, that non-
asm
functions compile in FunC just fine, so the following modification of theasm
function above into the global function will producetrue
:And dropping unused values doesn't interfere here, see:
The text was updated successfully, but these errors were encountered: