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

9 lines
125 B
Plaintext

{
switch 42
case mul(1, 2) {}
case 2 {}
default {}
}
// ----
// ParserError 4805: (28-29): Literal expected.