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

14 lines
217 B
Solidity

contract C {
function f() public returns (uint256 r, bytes32 r2) {
assembly {
r := 7
r2 := "abcdef"
}
}
}
// ====
// compileToEwasm: also
// ----
// f() -> 7, "abcdef"