fpc/tests/test/jvm/toverload.pp
Jonas Maebe 4a0528399e * check all overloaded routines for mangled name conflicts on the JVM
platform, as different Pascal declarations are mapped to the same
    JVM representation

git-svn-id: trunk@27520 -
2014-04-10 21:07:14 +00:00

13 lines
115 B
ObjectPascal

{ %fail }
procedure test(var b: byte);
begin
end;
procedure test(const b: array of byte);
begin
end;
begin
end.