fpc/tests/test/jvm/tprop5a.pp
Jonas Maebe 2075dc5a53 * support for raising the visibility of inherited properties on the JVM
target (generate new getters/setters with increased visibility that
    call the inherited ones, if necessary)

git-svn-id: trunk@27940 -
2014-06-12 11:08:44 +00:00

12 lines
128 B
ObjectPascal

program tprop5a;
uses
tprop5;
var
d: tderivedclass;
begin
d:=tderivedclass.create;
d.level:=5;
halt(d.level-5);
end.