This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 268628

Summary: Wrong resolving of overloaded functions
Product: cnd Reporter: Alexander Simon <alexvsimon>
Component: Code ModelAssignee: petrk
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: Dev   
Hardware: PC   
OS: Solaris   
Issue Type: DEFECT Exception Reporter:

Description Alexander Simon 2016-10-21 12:34:38 UTC
Example:
newfile.h:

int foo(int,int);

main.cpp:

#include "newfile.h"
static int foo(int);
static int foo(int i) {
    foo(i,5);
}
int foo(int i, int j) {}
int main(int argc, char** argv) {
    foo(1);
    return 0;
}

Find usages of definition int foo(int i, int j)  "returns foo(1)"