pascalabcnet/TestSuite/NewClassInClassField.pas
2017-12-31 10:27:13 +03:00

8 lines
178 B
ObjectPascal
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Type
ИмяКласса_1 = class
ИмяКласса_2 := new class(d:=1);
end;
Begin
var s := new ИмяКласса_1;
Assert(s.ИмяКласса_2.d = 1);
End.