mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 21:28:21 +02:00
15 lines
226 B
ObjectPascal
15 lines
226 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw34332;
|
|
|
|
{$mode objfpc}{$h+}
|
|
|
|
var
|
|
SS: ShortString;
|
|
S: String;
|
|
begin
|
|
SS := Copy(SS, 1); // << project1.lpr(9,14) Error: Type mismatch
|
|
S := Copy(S, 1); // << OK
|
|
SS := Copy(SS, 1, 1); // << OK
|
|
end.
|