mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-25 01:59:37 +02:00

platform, as different Pascal declarations are mapped to the same JVM representation git-svn-id: trunk@27520 -
20 lines
239 B
ObjectPascal
20 lines
239 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode objfpc}
|
|
type
|
|
tc = class
|
|
procedure test(var b: byte);
|
|
procedure test(const b: array of byte);
|
|
end;
|
|
|
|
procedure tc.test(var b: byte);
|
|
begin
|
|
end;
|
|
|
|
procedure tc.test(const b: array of byte);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|