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 - Wrong hyperlink for int k = i, i;
Summary: Wrong hyperlink for int k = i, i;
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 6.x
Hardware: All All
: P4 blocker (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-06-25 15:28 UTC by nnnnnk
Modified: 2013-05-07 11:21 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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);
}