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 138240

Summary: Wrong hyperlink for int k = i, i;
Product: cnd Reporter: nnnnnk <nnnnnk>
Component: Code CompletionAssignee: issues@cnd <issues>
Status: NEW ---    
Severity: blocker    
Priority: P4    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description nnnnnk 2008-06-25 15:28:18 UTC
There is wrong hyperlink for first "i" in "int k = i, i;":

int i;

int main(int argc, char** argv) {
    
    int k = i, i;
    
    i++;
    
    return (EXIT_SUCCESS);
}