A little doubt. Forgive the banality of the question. In ObjFpc mode, a constant dynamic array and a constant set are declared in the same way. So, how does the compiler interpret the following declaration?
program Project1;
{$mode ObjFpc}
const
C=[1,2,3];
begin
end.
Is C a constant dynamic array or a constant set?
Thank you.