fpc/tests/test/jvm/tprop4.pp
Jonas Maebe 8f96ace589 * fixed -CTauto(g|s)etterprefix automatically generated helpers in case they
have to wrap an existing (g|s)etter that was marked as "abstract" (don't
    mark the helper also as abstract, sicnce it contains code)

git-svn-id: trunk@23545 -
2013-01-30 22:35:59 +00:00

30 lines
433 B
ObjectPascal

program tprop4;
{$mode delphi}
type
tprop4c = class
protected
function Gettest2: longint; virtual; abstract;
public
property test: longint read Gettest2;
end;
tprop4c2 = class(tprop4c)
protected
function Gettest2: longint; override;
end;
function tprop4c2.Gettest2: longint;
begin
result:=1;
end;
var
c: tprop4c;
begin
c:=tprop4c2.create;
if c.test<>1 then
halt(1);
end.