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
type U8isuint8;
using {add as +} for U8 global;
function add(U8 x, U8 y) purereturns (U8 z) {
assembly {
z :=add(div(x, 256), div(x, 256))
}
}
contractC {
function testBinary() externalpurereturns (U8, U8) {
U8 a;
U8 b;
return (a + b, add(a, b));
}
}
solang compile --target solana test.sol
hread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: ()', src/codegen/yul/builtin.rs:471:10
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
The text was updated successfully, but these errors were encountered:
Version: v0.3.3: Atlantis
The text was updated successfully, but these errors were encountered: