Hi, On Wed, 13 Nov 2013, Joseph S. Myers wrote:
> +In GNU C, but not GNU C++, you may also declare the type of a variable > +as @code{__auto_type}. In that case, the declaration must declare > +only one variable, What's the reason for this restriction? I can't see what would become ambiguous with allowing multiple declarations (even when mixing types): int i; short s; __auto_type i2 = i, s2 = s; (i2 would be int, s2 be short). Ciao, Michael.