tranleduy2000 / pascalnide

Pascal Compiler for Android
92 stars 25 forks source link

"Attempt to invoke interface method `int.*.getSize()` on a null object reference" for initialized array without bounds #75

Open EmilyGraceSeville7cf opened 2 months ago

EmilyGraceSeville7cf commented 2 months ago
program arrays;
uses crt;

var
  a: array of integer = (1, 2, 3);

begin
end.