solidity/test/libyul/yulSyntaxTests/switch_default_before_case.yul
2020-11-04 12:03:33 +01:00

8 lines
122 B
Plaintext

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