pascalabcnet/TestSuite/intellisense_tests/question2.pas

8 lines
119 B
ObjectPascal
Raw Permalink Normal View History

2018-11-12 22:52:25 +03:00
type
t1=class
constructor(i: byte) := exit;
end;
begin
new t1{@constructor t1(i: byte);@}(true?0:1);
end.