fpc/tests/test/tprocvar19.pp
Sven/Sarah Barth 6a9b4a1b13 + apply patch by Blaise.ru: allow initialisation of method pointers with class methods (when class types are
known at compile time)
* adjust error message when a method pointer isn't suitable
+ add tests
2022-05-26 21:42:55 +02:00

20 lines
260 B
ObjectPascal

{ %FAIL }
program tprocvar19;
{$mode delphi}
type C = class
class procedure Foo;
end;
class procedure C.Foo; begin end;
type CC = class of C;
type T = procedure of object;
var aCC: CC = nil;
// Still rejected:
var ViaClassRef: T = aCC.Foo;
begin
end.