I know that switch/select statements break automatically after every case. I am wondering, in the following code:
switch
select
for { switch
A hopefully illustrative example:
loop: for { switch expr { case foo: if condA { doA() break // like 'goto A' } if condB { doB() break loop // like 'goto B' } doC() case bar: // ... } A: doX() // ... } B: doY() // ....