Recent content by Sirius

  1. S

    "Go to Declaration" on Ctrl+Click does not work on duplicate functions with different arguments

    Just create a new package and add this code: Function Fn(a number, b number) return number is   begin return a + b; end;   Function Fn(a number) return number is   begin     return Fn(a, 1);   end;   Procedure Test is   v number; begin     v := Fn(1);   end; Then try this: 1...
Back
Top