tranleduy2000 / pascalnide

Pascal Compiler for Android
92 stars 25 forks source link

NullPointerException for a static array type with one of bounds initialized from constant #76

Open EmilyGraceSeville7cf opened 2 months ago

EmilyGraceSeville7cf commented 2 months ago
program test;

const
  Bound = 0;

type
  T = array [Bound..1] of boolean;

begin
end.