pascalabcnet/TestSuite/formatstring8.pas

6 lines
114 B
ObjectPascal
Raw Normal View History

2021-12-24 16:07:49 +03:00
function f1(b: byte) := 0;
begin
var s := $'{f1} {0}';
assert(s = 'function f1(b: byte): integer 0');
2021-12-24 16:07:49 +03:00
end.