fpc/tests/webtbs/tw7527.pp
Jonas Maebe e4d48432d8 - removed svn:executable
git-svn-id: trunk@5015 -
2006-10-23 22:52:04 +00:00

23 lines
290 B
ObjectPascal

program test_mix_string_types;
{$define fail1}
{$define fail2}
{$ifdef fail1}
{$H+}
{$endif}
uses sysutils
{$ifdef fail2}
,classes
{$endif}
;
{$ifndef fail2}
type TComponentName=string;
{$endif}
var
S1: TComponentName;
S2:string;
begin
if AnsiUpperCase(S1+'.'+S2)='' then ;
end.