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 151741

Summary: Unresolved label between else and if
Product: cnd Reporter: nnnnnk <nnnnnk>
Component: Code ModelAssignee: issues@cnd <issues>
Status: RESOLVED WORKSFORME    
Severity: blocker    
Priority: P4    
Version: 6.x   
Hardware: Sun   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description nnnnnk 2008-10-29 16:08:18 UTC
Example:
int foo() {
    while (0) {
        if (1)
            goto hkscsdec; // unresolved
        if (1) {
        } else
            hkscsdec : // unresolved
            if (1) {
            }
    }
    return 0;
}
Comment 1 nnnnnk 2009-03-31 12:44:10 UTC
works for me