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
when we got multiple external functions with the same content but different function names, the later ones will override the previous ones in the exports table in our parser, for example
/// addition#[zink::external]pubfnfoo(x:i32,y:i32) -> i32{
x + y
}/// addition#[zink::external]pubfnbar(x:i32,y:i32) -> i32{
x + y
}
while this is actually unexpectedly in development, e.g. duplicate code, we ban this behavior directly atm instead of supporting it, feel free to discuss on it!
The text was updated successfully, but these errors were encountered:
when we got multiple external functions with the same content but different function names, the later ones will override the previous ones in the exports table in our parser, for example
while this is actually unexpectedly in development, e.g. duplicate code, we ban this behavior directly atm instead of supporting it, feel free to discuss on it!
The text was updated successfully, but these errors were encountered: