warning[consecutive_jumps]: consecutive jumps in hex pattern `$a`
--> line:3:18
|
3 | $a = { 01 02 [1-2][3-4][1-3] 03 04 }
| --------------- these consecutive jumps will be treated as [5-9]
|
help: consider the following change
|
3 - $a = { 01 02 [1-2][3-4][1-3] 03 04 }
3 + $a = { 01 02 [5-9] 03 04 }
|