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

15 lines
225 B
ObjectPascal

//!Нельзя реализовывать метод из другого модуля
unit err0534;
interface
uses err0533;
function f0: integer;
implementation
static function t1.f1 := 2;
function f0 := t1.f1;
end.