solidity/test/libsolidity/ASTJSON/assembly/switch_default.sol

8 lines
112 B
Solidity
Raw Normal View History

contract C {
function g() view public {
2020-05-27 14:30:48 +00:00
assembly { switch 0 case 0 {} default {} }
}
}
// ----