solidity/test/libsolidity/semanticTests/viaYul/simple_inline_asm.sol
2022-05-19 20:23:28 +02:00

18 lines
286 B
Solidity

contract C {
function f() public pure returns (uint32 x) {
uint32 a;
uint32 b;
uint32 c;
assembly {
a := 1
b := 2
c := 3
}
x = a + b + c;
}
}
// ====
// compileToEwasm: also
// ----
// f() -> 6