fpc/tests/webtbf/tw3395a.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

29 lines
418 B
ObjectPascal

{ %fail }
{$mode delphi}
type
texec1 = class
protected
procedure execute;
public
constructor create;
end;
procedure t(p: pointer);
begin
end;
constructor texec1.Create;
begin
// This should give an invalid typecast, because a methodpointer are 2 pointers
t(pointer(execute));
end;
procedure texec1.execute;
begin
end;
begin
end.