fpc/tests/test/jvm/tclassproptest.pp
Jonas Maebe 71068ae7eb * made the tests Android-compatible (use the androidr14 unit instead
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 -
2011-12-12 20:34:02 +00:00

33 lines
545 B
ObjectPascal

program tclassproptest;
{$mode objfpc}
uses
{$ifdef java}jdk15{$else}androidr14{$endif};
type
tclassprop = class
strict private
class var fx: longint;
public
class property x: longint read fx write fx;
class procedure test(l: longint);
end;
class procedure tclassprop.test(l: longint);
begin
if fx<>l then
raise jlexception.create('test 1 error');
end;
var
c: tclassprop;
begin
c:=tclassprop.create;
c.x:=123;
c.test(123);
if c.x<>123 then
raise jlexception.create('test 2 error');
end.