Compile the following two package headers:
Now open a test window and try the following:
On the first line, the code assistant will pop up a window that lets you pick which version of the function to call. On the second line, it automatically fills in "a1 => " and doesn't see the second function. This seems wrong, and it seems that the same pop-up window should appear for the second line.
Code:
CREATE OR REPLACE PACKAGE Test1 AS
PROCEDURE Foo(
a1 NUMBER,
b1 NUMBER );
PROCEDURE Foo(
b1 VARCHAR2,
b2 VARCHAR2 );
END Test1;
Code:
CREATE OR REPLACE PACKAGE Test2 AS
PROCEDURE Foo(
a1 NUMBER );
PROCEDURE Foo(
b1 VARCHAR2,
b2 VARCHAR2 );
END Test2;
Now open a test window and try the following:
Code:
begin
Test1.foo(
Test2.foo(
end;
On the first line, the code assistant will pop up a window that lets you pick which version of the function to call. On the second line, it automatically fills in "a1 => " and doesn't see the second function. This seems wrong, and it seems that the same pop-up window should appear for the second line.