mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
286 B
Solidity
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
|