blob: 65a9721e7c4bed3b28e765f9c578245cdf9261fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{ Source provided for Free Pascal Bug Report 2332 }
{ Submitted by "Sergey Kosarevsky" on 2003-01-21 }
{ e-mail: netsurfer@au.ru }
Type tObject=Object
Constructor Init;
Function GetVMT:Pointer;Static;
Destructor Done;Virtual;
End;
Function tObject.GetVMT:Pointer;
Begin
Exit(Self);
End;
Constructor tObject.Init;
Begin
End;
Destructor tObject.Done;
Begin
End;
Var O:tObject;
Begin
O.Init;
WriteLn(Longint(TypeOf(tObject)));
WriteLn(Longint(O.GetVMT));
WriteLn(Longint(tObject.GetVMT));
if (O.GetVMT<>TypeOf(tObject)) or (TypeOf(tObject)<>tObject.GetVMT) then
begin
writeln('Error with typeof');
halt(1);
end;
End.
|