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

8 lines
127 B
Plaintext

{
switch 42
default {}
default {}
}
// ----
// ParserError 6931: (35-42='default'): Only one default case allowed.