mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:47:53 +02:00

of the jdk15 unit in that case) * adjusted testall.sh script so it can also be used to test class files compiled for Android (still with the JVM though) git-svn-id: branches/jvmbackend@19835 -
35 lines
453 B
ObjectPascal
35 lines
453 B
ObjectPascal
program tdefpara;
|
|
|
|
{$mode delphi}
|
|
|
|
{$ifdef cpujvm}
|
|
uses
|
|
{$ifdef java}jdk15{$else}androidr14{$endif};
|
|
|
|
{$macro on}
|
|
{$define writeln:=jlsystem.fout.println}
|
|
{$endif}
|
|
|
|
|
|
type
|
|
tc = class
|
|
fa: longint;
|
|
constructor create(a: longint = 1234);
|
|
end;
|
|
|
|
tc2 = class(tc)
|
|
end;
|
|
|
|
constructor tc.create(a: longint = 1234);
|
|
begin
|
|
fa:=a;
|
|
end;
|
|
|
|
var
|
|
c: tc;
|
|
begin
|
|
c:=tc2.create;
|
|
if c.fa<>1234 then
|
|
raise jlexception.create('wrong overload');
|
|
end.
|