mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:18:30 +02:00
11 lines
149 B
ObjectPascal
11 lines
149 B
ObjectPascal
{ test for const string that is a char }
|
|
|
|
const
|
|
C ='D';
|
|
D = 'AD';
|
|
PP : string[length(D)] = D;
|
|
P : String[length(c)] = C;
|
|
|
|
begin
|
|
end.
|