mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 12:03:45 +02:00
13 lines
147 B
ObjectPascal
13 lines
147 B
ObjectPascal
type
|
|
TA = object
|
|
end;
|
|
|
|
var
|
|
P: Pointer;
|
|
|
|
begin
|
|
{ must fail on compilation because
|
|
TA has no VMT }
|
|
P := pointer(TypeOf(TA));
|
|
end.
|