Note: Read the comments to this one first. Johannes more or less shot down my whole argument with one well-placed standard quote. ;-)
I do not have the C++ standard available, so I have to extrapolate from the C standard.
Surprisingly enough (for me), chapter 6.2.1 Scopes of identifiers says nothing about the scope of an identifier starting at the point of its declaration (as I would have guessed). int a, in your example, has block scope, which "terminates at the end of the associated block", and that is all that is said about it. chapter 6.8.6.1 The goto statement says that "a goto statement shall not jump from outside the scope of an identifier having a variably modified type to inside the scope of that identifier" - but since your gotos jump around only within the block (and, thus, the scope of int a, that seems to be OK as far as ISO/IEC 9899:1999 is concerned.
I'm quite surprised about this...
Edit #1: A quick google later I got my hands on the C++0x final draft. The relevant statement, I think, is this here (6.7 Declaration statement, highlighting mine):
It is possible to transfer into a block, but not in a way that
bypasses declarations with initialization.
A program that jumps from a point where a variable with automatic
storage duration is not in scope to a point where it is in scope is
ill-formed unless the variable has scalar type, class type with
a trivial default constructor and a trivial destructor, a cv-qualified
version of one of these types, or an array of one of the
preceding types and is declared without an initializer.
I think your code is OK by the standard's standards. But butt-ugly, mind you. ;-)
Edit #2: Reading your comment about the possible destruction of int a due to the jump backwards, I found this (6.6 Jump statements, highlighting mine):
Transfer out of a loop, out of a block, or back past an initialized variable
with automatic storage duration involves the destruction of objects with
automatic storage duration that are in scope at the point transferred from but
not at the point transferred to.
One, int a is not "initialized", and it is not an object if I understand the standard terminology correctly.
awould be of class type, then jumping before it would call its destructor. So I was wondering about if it is of non-class type, would jumping before it invalidate its value? So jumping toz, and then tou, willaremain the value10, or some random other value possibly used by a local variable or some assembler operation at pointz? – Johannes Schaub - litb Jul 22 '11 at 14:18