tranleduy2000 / pascalnide

Pascal Compiler for Android
92 stars 25 forks source link

java.util.MissingFormatArgumentException when function name matches Color object method name (ARGB) #70

Open EmilyGraceSeville7cf opened 2 months ago

EmilyGraceSeville7cf commented 2 months ago
program Test; 

uses
  Crt;

function ARGB(a, r, g, b: integer) : integer;

var
  generator: android_graphics_Color;

begin
  ARGB := generator.argb(a, r, g, b);
end; 

begin
end.