mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
240 B
Solidity
15 lines
240 B
Solidity
contract C {
|
|
function f() public returns (uint256 r, bytes32 r2) {
|
|
assembly {
|
|
r := 7
|
|
r2 := "abcdef"
|
|
}
|
|
}
|
|
}
|
|
|
|
// ====
|
|
// compileToEwasm: also
|
|
// compileViaYul: also
|
|
// ----
|
|
// f() -> 7, "abcdef"
|