solidity/test/libsolidity/syntaxTests/controlFlow/storageReturn/assembly/switch_fine.sol
2020-03-09 16:23:10 +01:00

26 lines
619 B
Solidity

contract C {
struct S { bool f; }
S s;
function f(uint256 a) internal pure returns (S storage c) {
assembly {
switch a
default { c_slot := s_slot }
}
}
function g(bool flag) internal pure returns (S storage c) {
assembly {
switch flag
case 0 { c_slot := s_slot }
default { c_slot := s_slot }
}
}
function h(uint256 a) internal pure returns (S storage c) {
assembly {
switch a
case 0 { revert(0, 0) }
default { c_slot := s_slot }
}
}
}
// ----