solidity/test/libsolidity/syntaxTests/inlineAssembly/hex_switch_case.sol
2022-01-31 19:36:25 +01:00

11 lines
151 B
Solidity

contract C {
function f() public pure {
assembly {
switch calldatasize()
case hex"00" {}
case hex"1122" {}
}
}
}
// ----