fpc/tests/test/jvm/tptrdynarr.pp
Jonas Maebe 2075bf157e * insert JVM checkcast instructions when a voidpointer is implicitly
converted to an incompatible type

git-svn-id: trunk@27744 -
2014-05-10 12:47:34 +00:00

12 lines
104 B
ObjectPascal

{$mode delphi}
program tptrdynarr;
var
p: pointer;
a: array of byte;
begin
p:=nil;
a:=p;
end.