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

8 lines
117 B
Plaintext

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