pascalabcnet/TestSuite/classfield4.pas

14 lines
164 B
ObjectPascal
Raw Permalink Normal View History

2022-06-16 14:28:21 +03:00
type
t1 = static class
static o := 1;
end;
var x := t1.o;
begin
assert(x = 1);
x := 5;
assert(x = 5);
assert(t1.o = 1);
assert(x = 5);
end.