pascalabcnet/TestSuite/errors/err0533.pas
Ivan Bondarev 2dbe47c613 #2728
2024-01-05 16:34:30 +01:00

14 lines
164 B
ObjectPascal

//exclude
unit err0533;
{$savepcu false}
interface
type
t1 = class
static function f1: integer;
end;
implementation
static function t1.f1 := 1;
end.