* New test verifying that Internal Error 2013032603 no longer occurs for "Str"

This commit is contained in:
J. Gareth "Curious Kit" Moreton 2025-05-06 16:03:37 +01:00
parent 6f526e83a4
commit f8f7867198

9
tests/webtbf/tw41249.pp Normal file
View File

@ -0,0 +1,9 @@
{ %FAIL }
program tw41249;
var
c: Char;
s: string;
begin
Str(c, s); // Ensure a compiler error occurs and not Internal error 2013032603
end.