pascalabcnet/TestSuite/formatter_tests/should/formatstring1.pas
Бондарев Иван 1742140d85 fix #839
2018-05-20 11:37:43 +02:00

11 lines
137 B
ObjectPascal

type
TRec = record
a: integer;
end;
begin
var x: TRec;
x.a := 2;
var s := $'Hello {x.a}';
assert(s = 'Hello 2');
end.