Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.0.0 / tests / webtbs / tw14740.pp
Size: Mime:
var
  w: widestring;
  u: unicodestring;
  pw: pwidechar;
  pu: punicodechar;
  p: pchar;
begin
  pw:='abc'#0'def';
  setstring(w,pw,7);
  if w<>'abc'#0'def' then
    halt(1);
  w:='';

  pu:='abc'#0'def';
  setstring(u,pu,7);
  if u<>'abc'#0'def' then
    halt(2);
  u:='';

  p:='abc'#0'def';
  setstring(w,p,7);
  if w<>'abc'#0'def' then
    halt(3);

  setstring(u,p,7);
  if u<>'abc'#0'def' then
    halt(4);
end.