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

8 lines
102 B
Solidity
Raw Normal View History

contract C {
function g() view public {
assembly { switch 0 default {} }
}
}
// ----