* test for already resolved issue #38874

This commit is contained in:
florian 2022-03-03 21:24:43 +01:00
parent 2b66f60a88
commit ac53225817

12
tests/webtbf/tw38874.pp Normal file
View File

@ -0,0 +1,12 @@
{ %fail }
program ConstString;
procedure Test;
const TestString='abc';'def';
begin
writeln(TestString);
end;
begin
Test;
end.