pascalabcnet/TestSuite/errors/err0533.pas

14 lines
164 B
ObjectPascal
Raw Permalink Normal View History

2024-01-05 18:34:30 +03:00
//exclude
unit err0533;
{$savepcu false}
interface
type
t1 = class
static function f1: integer;
end;
implementation
static function t1.f1 := 1;
end.