fpc/tests/webtbf/tw30729a.pp

21 lines
212 B
ObjectPascal

{ %FAIL }
{ class constructors *must* be named "Create" }
program tw30729a;
{$mode objfpc}
type
TTest = class
class constructor Create2;
end;
class constructor TTest.Create2;
begin
end;
begin
end.