test for length(char) in const expr

This commit is contained in:
pierre 1998-11-05 10:21:41 +00:00
parent da09fad8f9
commit cb9c63b467

10
tests/ts010020.pp Normal file
View File

@ -0,0 +1,10 @@
{ 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.