pascalabcnet/TestSuite/intellisense_tests/function5.pas

9 lines
164 B
ObjectPascal
Raw Permalink Normal View History

2019-02-17 22:52:03 +03:00
type
T = static class
public static function A(s: string) := 0;
public static procedure A := exit;
end;
begin
T.A{@static procedure T.A();@};
end.