solidity/test/libsolidity/semanticTests/viaYul/simple_inline_asm.sol

18 lines
285 B
Solidity
Raw Normal View History

2019-04-11 10:58:27 +00:00
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;
}
}
// ====
// compileViaYul: true
// ----
// f() -> 6