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.2.0 / tests / webtbs / tw11371.pp
Size: Mime:
program tw11371;

{$mode delphi}{$H+}

uses
  Variants;

procedure Test1(const s: string);
begin
  // nothing
end;

procedure Test2(const s: UTF8String);
begin
  // nothing
end;

var
  V: Variant;

begin
  V := 'Test';
  Test1(V);
  Test2(V);
end.