Kray-G/kinx

No error for multiple `const` declaration for the same variable.

Kray-G opened this issue · 0 comments

Here is the code.

const A = 1;
const A = 2;
System.println(A);

No error and displaying 1 in this case.