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 / tbf / tb0024.pp
Size: Mime:
{ %FAIL }
{ Old file: tbf0148.pp }
{ crash when setting function result of a declared but not yet implemented function in another function }

unit test;

interface

Function t(a: Byte): byte;
Function DoT(b: byte): Byte;

implementation

Function t(a: Byte): Byte;
var f: byte;
Begin
  DoT := f;
End;

Function DoT(b: byte): Byte;
Begin
End;

end.