RAD Studio Athens

E2538

Go Up to Error and Warning Messages (Delphi)

This occurs when you give the Default function a type that is not compatible as a parameter.


program E2538;

{$APPTYPE CONSOLE}

uses
  SysUtils;

begin
  Default(Text); //E2538
  Default(File); //E2538
end.