Although it's invalid, the compiler does not complain about the following syntax:
One would assume that both x and y are defined as LONG, but this is not the case as x is defined as INT (because it is not followed by the AS keyword).
The correct syntax is
The compiler should display an error in the first case.
Although it's invalid, the compiler does not complain about the following syntax:
One would assume that both
xandyare defined as LONG, but this is not the case asxis defined as INT (because it is not followed by the AS keyword).The correct syntax is
The compiler should display an error in the first case.