solidity/test/libyul/yulSyntaxTests/switch_default_before_case.yul
2022-04-01 23:41:18 -05:00

8 lines
129 B
Plaintext

{
switch 42
default {}
case 1 {}
}
// ----
// ParserError 4904: (35-39='case'): Case not allowed after default case.