Closed patflick closed 11 years ago
The compiler currently permits variables with the same name instead of throwing an error at the second declarations.
This should not be possible:
int x; int x =1; int x =2; struct SomeDefinedStruct x; char * x[255];
fixed with new compiler
The compiler currently permits variables with the same name instead of throwing an error at the second declarations.
This should not be possible: