fpc/tests/webtbf/tw38874.pp
2022-03-03 21:24:43 +01:00

13 lines
132 B
ObjectPascal

{ %fail }
program ConstString;
procedure Test;
const TestString='abc';'def';
begin
writeln(TestString);
end;
begin
Test;
end.