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 - Unresolved label between else and if
Summary: Unresolved label between else and if
Status: RESOLVED WORKSFORME
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 6.x
Hardware: Sun All
: P4 blocker (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-10-29 16:08 UTC by nnnnnk
Modified: 2009-03-31 12:44 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-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