solidity/test/libyul/yulSyntaxTests/switch_duplicate_default.yul

8 lines
117 B
Plaintext
Raw Normal View History

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