solidity/test/libsolidity/semanticTests/inlineAssembly/inline_assembly_write_to_stack.sol
2020-03-19 14:42:25 +01:00

14 lines
216 B
Solidity

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